Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
What numbers will be displayed if code corresponding to the following pseudo code is run?
What numbers will be displayed if code corresponding to the following pseudo code is run?Set Number = 0While Number < 4Write NumberSet Number = Number + 1End While
the values that will be disolayed are 0 1 2 3 as the while condition will remail true till numer is less then 4