Chapter 5: Problem 18
Look at the following pseudocode. 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
Short Answer
Expert verified
Answer: The pseudocode will display the sequence of numbers: 5, 4, 3, 2, 1.