U3: [Assess] L14-L17 Code.org

U3: [Assess] L14-L17 Code.org

9th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

Python

Python

10th - 11th Grade

10 Qs

CSP 1.1.3 & 1.1.4 Branching & Iteration/Objects and Methods

CSP 1.1.3 & 1.1.4 Branching & Iteration/Objects and Methods

10th - 12th Grade

14 Qs

Code.org Discoveries

Code.org Discoveries

9th - 11th Grade

10 Qs

DTJSQuiz

DTJSQuiz

11th Grade

10 Qs

C#

C#

11th Grade

10 Qs

CSP I: Unit 4 Review

CSP I: Unit 4 Review

9th - 12th Grade

10 Qs

Python Data Types & Input/Output

Python Data Types & Input/Output

9th Grade

11 Qs

Scratch Coding

Scratch Coding

3rd - 12th Grade

7 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