Loops

Loops

9th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

While Loops in Java

While Loops in Java

9th - 12th Grade

8 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

loops

loops

9th - 10th Grade

6 Qs

Java Script Quiz

Java Script Quiz

9th - 12th Grade

15 Qs

Java switch/for/while

Java switch/for/while

9th - 12th Grade

15 Qs

Java: repetition control structure for & while

Java: repetition control structure for & while

10th - 12th Grade

10 Qs

Lecture 4.4 Part 2

Lecture 4.4 Part 2

12th Grade

11 Qs

For Loops

For Loops

9th - 12th Grade

10 Qs

Loops

Loops

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Used 1K+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How many times will the following code print "Welcome to Java"?
int count = 0;
while (count < 10) {
 System.out.println("Welcome to Java");
 count++;
}
8
9
10
0

2.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What is the output of the following code?
int x = 0;
while (x < 4) {
 x = x + 1;
}
System.out.println("x is " + x);
0
1
3
4

3.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

 Analyze the following code.
int count = 0;
while (count < 100) {
 // Point A
 System.out.println("Welcome to Java!");
 count++;
 // Point B
}
 // Point C
count < 100 is always true at Point B 
 count < 100 is always false at Point B
 count < 100 is always true at Point A  and count < 100 is always false at Point C
 count < 100 is always true at Point Coint C

4.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

How many times will the following code print "Welcome to Java"?
int count = 0;
do {
 System.out.println("Welcome to Java");
 count++;
} while (count < 10);
0
9
8
10

5.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

Which of the following loops prints "Welcome to Java" 10 times?
A:
for (int count = 1; count <= 10; count++) {
 System.out.println("Welcome to Java");
for (int count = 2; count < 10; count++) {
 System.out.println("Welcome to Java");
}
for (int count = 1; count < 10; count++) {
 System.out.println("Welcome to Java");
}
for (int count = 0; count <= 10; count++) {
 System.out.println("Welcome to Java");
}

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

The following loop displays _______________.
for (int i = 1; i <= 10; i++) {
 System.out.print(i + " ");
 i++;
}
1 2 3 4 5 6 7 8 9
1 2 3 4 5 6 7 8 9 10
1 2 3 4 5 
1 3 5 7 9

7.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

What is the output for y?
int y = 0;
for (int i = 0; i<10; ++i) {
 y += i;
}
System.out.println(y);
1
36
45
9

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?