1.1.3 CSE Conditionals and Event-driven Programming

1.1.3 CSE Conditionals and Event-driven Programming

9th - 12th Grade

8 Qs

quiz-placeholder

Similar activities

PLTW Activity 1.1.4 Guess a Number

PLTW Activity 1.1.4 Guess a Number

9th Grade

13 Qs

Computational Thinking

Computational Thinking

8th - 12th Grade

10 Qs

CS Disco U3L12

CS Disco U3L12

6th - 12th Grade

10 Qs

Code.org Unit 5 Vocab Quiz 1

Code.org Unit 5 Vocab Quiz 1

9th - 12th Grade

10 Qs

CodeHS 2.6 Booleans

CodeHS 2.6 Booleans

9th Grade

10 Qs

Alice 2 - Chapter 3

Alice 2 - Chapter 3

7th - 12th Grade

10 Qs

Percabangan KD 3.6

Percabangan KD 3.6

10th Grade

10 Qs

Code.org CS Discoveries U3L15 Keyboard Input

Code.org CS Discoveries U3L15 Keyboard Input

9th Grade

10 Qs

1.1.3 CSE Conditionals and Event-driven Programming

1.1.3 CSE Conditionals and Event-driven Programming

Assessment

Quiz

Computers

9th - 12th Grade

Medium

Created by

Robin Robertson

Used 16+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program. Conditional statements are often written as 'if-then' or 'if-then-else' statements.

boolean expression

conditional statement

chained conditional statement

flowchart

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A processing decision branch using comparison operators (= ≠ > <) that is defined to return a Boolean value (“true” or “false”). By using Boolean expression to ask questions, the program can determine what to do next.

conditional statement

boolean expression

chained conditional statement

flowchart

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Help map out how to program various situations.

flowchart

boolean expression

conditional statement

chained conditional statement

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A series of conditionals that a computer moves through until it finds the one that is true.

flowchart

chained conditional statement

conditional statement

boolean expression

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The values that a program provides to a function or subroutine

integer

flowchart

argument

boolean expression

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A whole number that does not have a decimal or any digits after the decimal.

argument

integer

flowchart

boolean expression

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A sequence of actions or instructions to follow in solving a problem or accomplishing a task.

integer

argument

flowchart

procedure

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A symbol in code that tells a computer to perform a specific math operation, such as addition, subtraction, multiplication, or division. (+ - × / ).

integer

flowchart

boolean expression

arithmetic operator