Consider the following program
i
sum 0
REPEAT UNTIL
i- 4
i1
sum sum + i
ii+ 1
DISPLAY Sum
Which of the following best describes the result of running the program code?
(A)
The number 0 is displayed.
B
The number 6 is displayed.
The number 10 is displayed.
Nothing is displayed; the program results in an infinite loop.

Which of the following best describes the result of running the program code