Multiple Choice
What will be printed when the following algorithm is processed?
COUNTER = 0
DISTRIBUTION = 500
WHILE DISTRIBUTION > 200 AND COUNTER < 5
GIVEAWAY = DISTRIBUTION * .5
PRINT GIVEAWAY
DISTRIBUTION = DISTRIBUTION - GIVEAWAY
COUNTER = COUNTER + 1
WHILE-END
A) 250
B) 250,125
C) 150,125,62.5
D) None of the above
Correct Answer:

Verified
Correct Answer:
Verified
Q1: The start,stop,and step values in an automatic
Q2: All loop structures use the diamond in
Q3: The conditional test is made at the
Q5: When using a REPEAT/UNTIL instruction:<br>A)The condition is
Q6: When using an automatic counter loop,the counter
Q7: An indicator:<br>A)Can be a conditional end to
Q8: In an automatic counter loop,the instructions are
Q9: The loop logic structure:<br>A)Allows decisions to be
Q10: When using a WHILE/WHILE-END instruction,if the condition
Q11: Accumulating and counting a set of data