Look at the pseudocode below:
START
SET a = 2
SET sum = 0
WHILE a < 9
sum = sum + a
a = a + 1
END WHILE
PRINT sum
END
The initial value of a
is $\editable{}$.
What is the OUTPUT
of this code?
OUTPUT:
$\editable{}$
Look at the pseudocode below:
Look at the pseudocode below:
Note that the symbol /
represents division.
Look at the pseudocode below, and determine the value that is printed at the end of the code:
Note that the symbol >
represents the statement 'greater than'.