U3: [Assess] L14-L17 Code.org

U3: [Assess] L14-L17 Code.org

9th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

JavaScript variable quiz

JavaScript variable quiz

7th - 12th Grade

10 Qs

JavaScript Control Structures Basic

JavaScript Control Structures Basic

12th Grade

11 Qs

Python Syntax

Python Syntax

6th - 12th Grade

14 Qs

PBO Quis With Joe Ggp

PBO Quis With Joe Ggp

11th Grade

10 Qs

[AP CSP] Truth Tables and Boolean Expressions

[AP CSP] Truth Tables and Boolean Expressions

9th - 12th Grade

13 Qs

Data types and Input

Data types and Input

7th - 9th Grade

14 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Java Programming

Java Programming

9th Grade - University

11 Qs

U3: [Assess] L14-L17 Code.org

U3: [Assess] L14-L17 Code.org

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

EDWARD WARBURTON

Used 3+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming, an expression that evaluates to True or False is know as what?
Boolean Expression
If-Statement
Watcher statement
Function code

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The common programming structure that implements "conditional statements."
Boolean Expression
If-Statement
Watcher statement
Function code

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which result will be printed in the console by this code: var sprite1 = createSprite(100, 200); var sprite2 = createSprite(300, 200); console.log(sprite1.y == sprite2.y); console.log(sprite1.x > sprite2.x); console.log(sprite1.x < sprite2.y);
true, false, true
0 , 200, 100
true, error, true
false, true, false

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which one means, "Is the dog sprite's rotation less than the cat sprite's rotation?"
dog.rotation < cat.rotation
dog.x < cat.x
dog.scale > cat.scale
dog.x > cat.x
dog.x == cat.x

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When you want the program to run differently in response to different situation, which of the following would you use?
a draw function
a boolean expression
an If- statement
a variable

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The keyDown (code) block is used to write programs where a user can control sprites on the screen.
True
False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Statements that only run under certain conditions are what kind of statments?
Functions
Boolean expressions
Draw
Conditionals

8.

MULTIPLE SELECT QUESTION

30 sec • 1 pt

Which of the following are examples of a conditional statement? (Select 3)
If my username and password are correct, log me into Facebook
Input in my username and password, log me into Facebook
If Pacman has collected all the balls, start the next level
Turn off my computer at 8:00 pm
If my keyboard or mouse hasn't moved in 10 minutes, turn on the screensaver

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

With an if-else statement, you are giving an either and not command.
True
False