COMPLETE SOLUTIONS 100% CORRECT
◉ Joe is building an online game. He wants to provide a riddle and
have the player guess the answer. The game needs to prompt the
user to enter the answer, check to see if it the input provided does
not match the correct answer, and continue prompting the user until
the answer entered matches the correct answer.
Which control structure supports Joe's needs? Answer: Do-while
loop
◉ What is put to output by the following pseudocode?
x=3
do
Put x to output
Put " " to output
x=x-1
while x > 0 Answer: 3 2 1
◉ A programmer has developed the following code:
count = 0
, while count is less than 5:
print 'Hello'
What is the result of implementing this code? Answer: 'Hello' will
print indefinitely.
◉ What is the loop expression in the following pseudocode?
i=0
while i < 20
Put i to output
i = i + 1 Answer: i < 20
◉ What is the loop variable initialization in the following
pseudocode?
y=0
s = 100.0
while y < 10
s = s + (s * 5.0)
y = y + 1 Answer: y = 0
◉ Order the statements needed to output the minimum of x and y
from first (1) to last (4). Answer: Declare variable min