Solved

Which of the Following Does Not Print the Same Sequence

Question 8

Multiple Choice

Which of the following does not print the same sequence of numbers as the others?


A) X = 5
While (X < 6) :
Print(X)
X = X + 1
B) X = 4
While (X < 5) :
X = X + 1
Print(X)
C) X = 5 repeat:
Print( X)
X = X + 1
Until (X > 6)

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions