Java Loops Quiz

Java Loops Quiz

University

53 Qs

quiz-placeholder

Similar activities

EKG book chapter 3 review questions

EKG book chapter 3 review questions

University

55 Qs

workbook chapter 2 embryologic

workbook chapter 2 embryologic

University

50 Qs

ELECS 8

ELECS 8

University

50 Qs

OBSTETRIC AND GYNECOLOGY EXAM

OBSTETRIC AND GYNECOLOGY EXAM

University

50 Qs

CLUB CLOUD SELECTION

CLUB CLOUD SELECTION

University

50 Qs

Revision Acquisition

Revision Acquisition

University

50 Qs

EST 36

EST 36

University

50 Qs

MP and MC

MP and MC

University

50 Qs

Java Loops Quiz

Java Loops Quiz

Assessment

Quiz

Other

University

Hard

Created by

mukilan selvaraj

Used 2+ times

FREE Resource

53 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a loop in Java?

for

while

loop

do-while

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the syntax of a for loop?

for(initialization; condition; increment) { }

for(condition; initialization; increment) { }

for(increment; condition; initialization) { }

for(initialization, increment, condition) { }

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? for(int i = 0; i 0) { i--; System.out.println(i); }

5 4 3 2 1 0

4 3 2 1 0

5 4 3 2 1

4 3 2 1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A while loop executes:

At least once

Zero or more times

Only once

Infinite times

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement is true about a do-while loop?

The loop executes only once

The condition is checked before execution

The loop executes at least once

It never executes

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output? int i = 1; do { System.out.print(i + " "); i++; } while (i < 4);

1 2 3

1 2 3 4

1 2

Infinite loop

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop is best when the number of iterations is unknown?

for

while

do-while

switch

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?