Which of the following values can fill in the blanks to print “Apple” 3 times and “Mango” 5 times in the following pseudo-code segment?
Let x = 0
Loop until x is larger than 3
Display “Apple”
Increase the value of x by ____
End Loop
Let y = 2
Loop until y is larger than or equal to 10
Display “Mango”
Increase the value of y by ____
End Loop