Week 16 - CP1

Week 16 - CP1

12th Grade

9 Qs

quiz-placeholder

Similar activities

AP Computer Science Midterm Review

AP Computer Science Midterm Review

12th Grade

10 Qs

KS3 - Selection, Iteration or Sequence

KS3 - Selection, Iteration or Sequence

KG - 12th Grade

9 Qs

Math Class in Java

Math Class in Java

12th Grade

8 Qs

Java Code

Java Code

10th - 12th Grade

12 Qs

For Loop

For Loop

9th - 12th Grade

10 Qs

Java Unit 10

Java Unit 10

10th - 12th Grade

14 Qs

AP CSA Unit 1 & 2 Review

AP CSA Unit 1 & 2 Review

9th - 12th Grade

10 Qs

Single Array

Single Array

9th Grade - University

14 Qs

Week 16 - CP1

Week 16 - CP1

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Rafael Araujo

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following loops print the numbers from 0 to 5?

int i=0;

while (i<5) {

System.out.println(i);

i++;}

int i=0;

while (i<7) {

System.out.println(i);

i++;}

int i=0;

while (i<6) {

System.out.println(i);

i++;}

int i=0;

while (i<=6) {

System.out.println(i);

i++;}

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Why do we use loops?

To never end programming

To show off what you know

To avoid repeating the same instruction more than one time

To make it more complex

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

int i=0;

while (i<5) {

System.out.println(i);

i++;}

Then i=0; means that

None

The first number to be printed is 0

It is the first natrual number

That it is a binary number

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

int i=0;

while (i<5) {

System.out.println(i);

i++;}

The condition (i<5) means that:

All of them

The loop will continue occurring until the value of "i" becomes greater than or equal to 5

The loop will continue occurring until the value of "i" becomes less than or equal to 5

The loop will continue occurring indefinitely

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

int i=0;

while (i<5) {

System.out.println(i);

i++;}

The instruction i++ means that:

I every iteration the value of "i" decreases by 2

I every iteration the value of "i" increases by 1

I every iteration the value of "i" increases by 2

I every iteration the value of "i" decreases by 1

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

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

System.out.println(i);}

Then i=0; means that

The last value to be printed is 0

The first value to be printed is 0

Every time I write a loop I need to make "i" equal to 0

All of them

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

for (int i=0; i<4; i++) {

System.out.println(i);}

The condition (i<4) means that:

All of them

The loop will continue occurring until the value of "i" becomes greater than or equal to 4

The loop will continue occurring until the value of "i" becomes less than or equal to 4

The loop will continue occurring indefinitely

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When given:

for (int i=5; i>0; i--) {

System.out.println(i);}

The instruction i-- means that:

I every iteration the value of "i" decreases by 2

I every iteration the value of "i" increases by 1

I every iteration the value of "i" increases by 2

I every iteration the value of "i" decreases by 1

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following loops print the numbers from 0 to 5?

for (int i=0; i<=6; i++) {

System.out.println(i);

}

for (int i=0; i<6; i++) {

System.out.println(i);

}

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

System.out.println(i);

}

for (int i=0; i>5; i++) {

System.out.println(i);

}