for counter 0 counter 10 counter counter 1 cout counter endl-02820
for ( counter = 0 ; counter < 10 ; counter = counter +1 ) cout<< counter << endl; } this for loop is print on screen __________ on separate lines.
This multiple choice question (MCQ) is related to the book/course vu cs201 Introduction to Programming. It can also be found in vu cs201 Lecture No.06 - Quiz No.2.
for ( counter = 0 ; counter < 10 ; counter = counter +1 ) cout<< counter << endl; } this for loop is print on screen __________ on separate lines.
0,1,2,3,…,9
1,2,3,…,10
0,1,2,3,…,10
1,2,3,…,11