console.WriteLine("1. Which step breaks the instruction into the operator and operand?")
answer = console.ReadLine().ToUpper()
If answer = "DECODE" then
console.WriteLine("Correct")
console.WriteLine("Wrong")
console.WriteLine("2. Where does the CPU fetch the instruction from?")
answer = console.ReadLine().ToUpper()
console.WriteLine("Correct")
console.WriteLine("Wrong")
console.WriteLine("3. Is 6 an example of the operator or operand?")
answer = console.ReadLine().ToUpper()
If answer = "OPERAND" then
console.WriteLine("Correct")
console.WriteLine("Wrong")
console.WriteLine("Congratulations you got 3 out of 3!")
console.writeline(" ") End Sub