1. Look at the following pseudocode. If it were a real program, what would it display?
Declare Integer number = 5
Set number = number + 1
Display number.
2.Look at the following pseudocode. If it were a real program, what woulg it display?
Declare Integer counter
For counter = 1 to 5
Display counter
End for
3. Look at the following pesudocode. If it were a real program, what would it display?
Declare Integer counter
constant Integer MIN =1
For counter = 5 to Min Step -1
Display counter
End for.