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

2.1.2 CSE Coding Fundamentals: Dead Reckoning

2.1.2 CSE Coding Fundamentals: Dead Reckoning

9th - 12th Grade

9 Qs

Percabangan KD 3.6

Percabangan KD 3.6

10th Grade

10 Qs

Conditional Operators

Conditional Operators

10th - 12th Grade

10 Qs

Code.org CS Discoveries U3L15 Keyboard Input

Code.org CS Discoveries U3L15 Keyboard Input

9th Grade

10 Qs

App Creator 1.4/1.5

App Creator 1.4/1.5

6th - 9th Grade

12 Qs

ICT Terms

ICT Terms

7th - 10th Grade

12 Qs

Code.org Unit 5 - Loops

Code.org Unit 5 - Loops

9th - 12th Grade

10 Qs

Computational Thinking

Computational Thinking

8th - 12th 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