CS A Unit 4 Practice

CS A Unit 4 Practice

11th Grade

24 Qs

quiz-placeholder

Similar activities

Python Unit 3 Comprehension Check (3,4,5,6)

Python Unit 3 Comprehension Check (3,4,5,6)

9th - 12th Grade

20 Qs

Arduino Loop

Arduino Loop

2nd Grade - University

20 Qs

CSP Arrays

CSP Arrays

10th - 12th Grade

20 Qs

Python variables and operators quiz

Python variables and operators quiz

9th - 12th Grade

20 Qs

Python Drill 1

Python Drill 1

7th - 12th Grade

20 Qs

Unit 3 Python TEST

Unit 3 Python TEST

11th - 12th Grade

20 Qs

AP CSA Primitive Types Practice

AP CSA Primitive Types Practice

11th Grade

22 Qs

The Barcode scanner

The Barcode scanner

9th - 11th Grade

20 Qs

CS A Unit 4 Practice

CS A Unit 4 Practice

Assessment

Quiz

Computers

11th Grade

Hard

Created by

SAMUEL KEENER

Used 2+ times

FREE Resource

24 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which kind of loop would be used?


I need a program that will keep letting me add a monthly payment for 12 months.

FOR Loop

WHILE Loop

2.

MULTIPLE CHOICE QUESTION

1 min • 12 pts

Which kind of loop would be used?


I need a guessing game program that will let me keep guessing until I get the right answer.

FOR Loop

WHILE Loop

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which kind of loop would be used?


I need a program that will keep letting me add money to a piggy bank until I get to $100.

FOR Loop

WHILE Loop

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the symbol used for the INCREMENT operator ?

+

++

=

==

5.

MULTIPLE CHOICE QUESTION

2 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

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which is NOT a way to add one to count?

count ++;

count = count + 1;

count +=1;

count +1;

7.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What will happen if an infinite while loop runs?

the program will crash

the computer will crash

the loop will just keep running

an error message will be displayed

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?