Unit 4 Flashcard 2 Reduced 25%

Unit 4 Flashcard 2 Reduced 25%

Assessment

Flashcard

Created by

Quizizz Content

Computers

9th - 12th Grade

Hard

Student preview

quiz-placeholder

9 questions

Show all answers

1.

FLASHCARD QUESTION

Front

Why do we use for loops in Java?

Back

To repeat something for a fixed number of times

2.

FLASHCARD QUESTION

Front

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

Back

Helps shorten the code

3.

FLASHCARD QUESTION

Front

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

Back

Always on their own line

4.

FLASHCARD QUESTION

Front

Why do we use if statements in Java?

Back

To do something only if a condition is true

5.

FLASHCARD QUESTION

Front

What does an if/else statement look like in Java? Options: if(condition) { // code } else { //code }

Back

if(condition) { // code } else { //code }

6.

FLASHCARD QUESTION

Front

Why do we use control structures in Java?

Back

To control the flow of the program

7.

FLASHCARD QUESTION

Front

Is this student admitted to high school if they made a 620 on the entrance exam?

Back

No, they are not admitted.

8.

FLASHCARD QUESTION

Front

A​ ______ loop is a loop that is inside of another loop.

Back

nested

9.

FLASHCARD QUESTION

Front

Which of the following sentences is an example of a conditional statement? Outer space feels infinite. What day is the parade? Please hand over the remote. It is cloudy today.

Back

It is cloudy today.