Back to quizzes
Loops Quiz
Java / Loops | Medium | 15 questions
Question 1 of 15
4 free questions left
What is the output of the following code? for(int i = 0; i < 5; i++) { cout << i; }
A
01234
B
12345
C
01235
D
54321