Loops Quiz

Loops Quiz

9th - 12th Grade

16 Qs

quiz-placeholder

Similar activities

Arithmetic Types Declare Initialize Relation Logical Ops

Arithmetic Types Declare Initialize Relation Logical Ops

9th Grade - University

16 Qs

Java Basics (Data Types and Variables)

Java Basics (Data Types and Variables)

6th - 10th Grade

16 Qs

Java, part I

Java, part I

11th Grade - University

20 Qs

Java Arrays Basic

Java Arrays Basic

10th - 12th Grade

15 Qs

"switch" Java Statement - 1

"switch" Java Statement - 1

9th - 10th Grade

17 Qs

Java Script Quiz

Java Script Quiz

9th - 12th Grade

15 Qs

PBO KELAS 12

PBO KELAS 12

12th Grade

14 Qs

Java Conditional Constructs

Java Conditional Constructs

9th - 10th Grade

20 Qs

Loops Quiz

Loops Quiz

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

Benjamin EnloeHS

Used 68+ times

FREE Resource

16 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?