Search Header Logo

Unit 4 Quiz 2 Review

Authored by Bret Dillon

Computers

9th - 12th Grade

Used 8+ times

Unit 4 Quiz 2 Review
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

24 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which general for loop definition is written correctly?

for(true)

{

// code

}

if(i<5)

{

// code

}

for(int i = 0; i < count; i++)

{

// code

}

while(condition)

{

// code

}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use for loops in Java?

To break out of some block of code

To do something if a condition is true


To do something while a condition is true


To repeat something for a fixed number of times

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use while loops in Java?

To break out of some block of code

To do something if a condition is true

To repeat some code while a condition is true

To repeat something for a fixed number of times

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which general while loop definition is written correctly?

while(x is true)

{

// code

}

if(i<5)

{

// code

}

while(int i = 0; i < count; i++)

{

// code

}

while(condition)

{

// code

}

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is NOT a reason a programmer should indent their code?


Helps show the structure of the code


Easier for other people to understand


Indenting is a key part of good programming style

Helps shorten the code

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To maintain good style, where should brackets go in Java programming?


Before defining the run method


Always on their own line


Right after defining a method


Two brackets per line

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use if statements in Java?


To break out of some block of code


To do something only if a condition is true

To do something while a condition is true

To repeat something for a fixed number of times

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?