Loops Quiz

Loops Quiz

9th - 12th Grade

16 Qs

quiz-placeholder

Similar activities

Unit 6 ArrayLists and String Methods

Unit 6 ArrayLists and String Methods

9th - 12th Grade

20 Qs

Loops

Loops

5th - 12th Grade

16 Qs

Java Unit 10

Java Unit 10

10th - 12th Grade

14 Qs

APCSA Arrays

APCSA Arrays

9th - 12th Grade

20 Qs

Topic 3 & 4 Practice - ArrayList and String Methods

Topic 3 & 4 Practice - ArrayList and String Methods

12th Grade

15 Qs

Java by Mr Sam

Java by Mr Sam

10th Grade

16 Qs

SK T4 : Tatasusunan

SK T4 : Tatasusunan

11th - 12th Grade

11 Qs

Quiz 2 Java

Quiz 2 Java

11th Grade

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