Intro to CS Unit 3 Practice test

Intro to CS Unit 3 Practice test

Assessment

Flashcard

Computers

12th Grade

Hard

Created by

Quizizz Content

FREE Resource

Student preview

quiz-placeholder

16 questions

Show all answers

1.

FLASHCARD QUESTION

Front

When do you use an else statement?

Back

To tell what will happen when an if-statement is false

Answer explanation

The else case will run when all of the other conditions checked are false

2.

FLASHCARD QUESTION

Front

Which of the following is NOT true about all algorithms?
- All algorithms can only do number calculations
- All algorithms have clear instructions
- All algorithms stop in a finite amount of time
- All algorithms have an order

Back

All algorithms can only do number calculations

Answer explanation

Algorithms are not restricted to only number calculations, they can do other processes as well.

3.

FLASHCARD QUESTION

Front

The following code could be rewritten using:
if (x > 12):
if (x < 34):

Back

and

Answer explanation

This is correct because both conditions need to be true

4.

FLASHCARD QUESTION

Front

Write the code to test if the number in the variable text1 is greater than 15.

Back

if (text1 > 15):

Answer explanation

This correctly tests if text1 is greater than the number 15

5.

FLASHCARD QUESTION

Front

Write the code to test if the number 78 is stored in the variable text1:

Back

if (text1 == 78):

Answer explanation

This correctly tests if text1 equals the number 78

6.

FLASHCARD QUESTION

Front

Write the code to test if the variables num1 and num2 are not the same

Back

if (num1 != num2 ):

Answer explanation

This correctly tests if num1 is not equal to num2

7.

FLASHCARD QUESTION

Front

To test if x is greater than or equal to y: if (x ___ y):

Back

>=

Answer explanation

This would be used to check if x is greater than or equal to y

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?