Conditional Quiz Review

Conditional Quiz Review

8th Grade

12 Qs

quiz-placeholder

Similar activities

CodeCombat

CodeCombat

8th Grade

10 Qs

ôn tập kiến thức lập trình trong CodeCombat

ôn tập kiến thức lập trình trong CodeCombat

3rd - 12th Grade

15 Qs

Code Combat first

Code Combat first

1st - 12th Grade

7 Qs

Bài kiểm tra cuối khóa CS1

Bài kiểm tra cuối khóa CS1

3rd - 12th Grade

14 Qs

CodeCombat CS3

CodeCombat CS3

6th - 9th Grade

12 Qs

Sprites, syntax, variables, and conditionals

Sprites, syntax, variables, and conditionals

6th - 8th Grade

10 Qs

Year 7 Scratch Baseline

Year 7 Scratch Baseline

7th - 8th Grade

12 Qs

G Suite (Pre-Assessment)

G Suite (Pre-Assessment)

5th - 8th Grade

13 Qs

Conditional Quiz Review

Conditional Quiz Review

Assessment

Quiz

Computers

8th Grade

Medium

Created by

Caitlin Conley

Used 1+ times

FREE Resource

12 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the definition of a Variable?

Writing out a program’s logic in plain English or Something Similar

A way to make decisions in programming by checking conditions

a function or method that compares two values and determines their relative order

A tool that we use to remember values for later use in a program

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the definition of Pseudocode?

A way to make decisions in programming by checking conditions

A tool that we use to remember values for later use in a program

Writing out a program’s logic in plain English or Something Similar

a function or method that compares two values and determines their relative order

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the definition of a Conditional?

Writing out a program’s logic in plain English or Something Similar

a function or method that compares two values and determines their relative order

A tool that we use to remember values for later use in a program

A way to make decisions in programming by checking conditions

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the Correct syntax of an If/then Statement?

If (distance < 3) { hero.sneakLeft(); } If (distance > 3) { hero.moveLeft(); }

If (distance < 4) hero.sneakLeft(); If (distance > 4) hero.moveLeft();

If distance > 4 hero.sneakRight(); If distance < 4 hero.moveRight();

if distance = hero.moveLeft() if distance > hero.sneakLeft()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following IS NOT a Comparator used in coding?

/

<

=

<

6.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following IS a Boolean?

True

false

Wrong

Both A and B

7.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following is the Correct syntax of an If/Else Statement?

if distance < 3 hero.castEarthWave(); else hero.castEarthPit( nearestTarget );

if ( distance < 3 ) hero.castEarthWave(); else hero.castEarthPit( nearestTarget );

if ( distance < 3 ) { hero.castEarthWave(); } else { hero.castEarthPit( nearestTarget ); }

None of the Above

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?