Conditional Test

Conditional Test

9th - 12th Grade

17 Qs

Similar activities

Python Conditionals

Python Conditionals

9th - 11th Grade

17 Qs

C++

C++

11th Grade

20 Qs

Java Conditional Constructs

Java Conditional Constructs

9th - 10th Grade

20 Qs

Intro to Java Loops

Intro to Java Loops

9th - 12th Grade

15 Qs

Python basics

Python basics

9th - 12th Grade

16 Qs

C++ - Loops and Random Numbers

C++ - Loops and Random Numbers

9th - 12th Grade

14 Qs

Selection in Python

Selection in Python

1st - 9th Grade

15 Qs

Programming Quiz

Programming Quiz

1st - 10th Grade

20 Qs

Conditional Test

Conditional Test

Assessment

Quiz

Created by

Donna Panter

Computers

9th - 12th Grade

57 plays

Medium

17 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If (fish = "bass" OR length > 7) {

Catch <-- "Keep"; }

Else {

Catch <-- "Release"; }

In which situations will Catch be "Keep"?

When fish is "catfish" and length is 7.1

When fish is "catfish" and length is 6.9

When fish is "catfish" and length is 7

When fish is "catfish" and length is 4.0

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the expected values of exercise if the given values of miles is 3 and 7?

if ( miles > 3 ) {

exercise <-- "fun" }

else {

exercise <-- "endurance" }

"fun"

"fun"

"fun"

"endurance"

"endurance"

"fun"

"fun"

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the value of mile when x is 4 and y is 8?

7

3

10

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

The if statements are missing logical operators. Which operator should be used to make the below table true?

Clicks Color

1-5 Red

6-10 Yellow

11-15 Orange

==

<=

>

<

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A flow chart to show when Melissa can go to the movies. She must implement it in code using the variables time and action. Which code segment is correct?

If (time > 5)

action <-- true

else

action <-- false

If (time < 6)

action <-- true

else

action <-- false

If (time > 6)

action <-- false

else

action <-- true

If (time > 6)

action <--true

else

action <-- false

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What does the following pseudo code output?

Hello

Goodbye

Hello

Goodbye

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output

A

A

B

B

A

B

C

C

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output?

28 in human years

4 in dog years

dogAge * 7 in human years

4 * 7 in human years

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Goodbye

Hello

syntax error

Hello Goodbye

10.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output?

var num = 10;

write(num < 20);

true

false

10

20

there is no output due to a syntax error

Explore all questions with a free account

or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?