Considering the pseudocode :
i = 0
sum = 0
REPEAT UNTIL i = 4
i = 1
sum++
DISPLAY sum
The output of the pseudocode will be 4.
pseudocode is a plain language description of the steps in an algorithm or another system.
Let's write the code in python.
i = 0
sum = 0
while i < 4:
sum += 1
i += 1
print(sum)
learn more on pseudocode here : https://brainly.com/question/17101205