CS402 T05

CS402 T05

Professional Development

10 Qs

quiz-placeholder

Similar activities

Python Final Quiz

Python Final Quiz

Professional Development

13 Qs

AJWT Unit - I Quiz

AJWT Unit - I Quiz

Professional Development

15 Qs

не лезь!!!!!!!!!!!!!!!!!!!!!!!!!

не лезь!!!!!!!!!!!!!!!!!!!!!!!!!

Professional Development

14 Qs

Sintaxe do Java - Parte 1

Sintaxe do Java - Parte 1

Professional Development

6 Qs

Excel Macro

Excel Macro

Professional Development

10 Qs

Arduino Coding

Arduino Coding

10th Grade - Professional Development

6 Qs

Python Quiz

Python Quiz

Professional Development

7 Qs

C - for loop

C - for loop

Professional Development

10 Qs

CS402 T05

CS402 T05

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Mike Wong

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

1. What is the purpose of a while loop in Java?

To execute a block of code once

To execute a block of code multiple times based on a condition

To define a constant variable

To define an array

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

2. How does a do-while loop differ from a while loop?

It does not check the condition at all

It checks the condition before the loop body executes

It executes the loop body at least once before checking the condition

It only works with numeric values

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

3. Which of the following terminates a loop immediately?

continue

break

return

exit

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

4. What is the output of the following code?

int count = 0;

while (count < 4) {

System.out.println("Hello");

count++;

}

Hello
Hello

Hello
Hello
Hello

Hello
Hello
Hello
Hello

No output

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

5. Which loop is most suitable for reading user input until a sentinel value is entered?

for loop

while loop

do-while loop

Nested loop

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

6. What does the continue statement do in a loop?

Exits the loop

Restarts the loop

Ends the loop

Skips the current iteration and continues with the next

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

7. What will be the value of sum after this loop executes?
int sum = 0;

for (int i = 1; i <= 5; i++) {

sum += i;

}

5

10

15

20

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?