Pseudocode Dry Run – Guaranteed A+ Solution
Instructions In the following pseudocode, what is printed? a = 1 b = 2 c = 5 while a < c a = a + 1 b = b + c endwhile print a, b, c The grading is based on your demonstration of the results after each loop, by the explanation of how many loops are needed and why the loop ended. Using a table, include aline for each time a line of code executes, why it executes and what each variable’s values are at that point. Line of code executed why this line executes value of a, b, and c
Play Video