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

Understanding Flowchart Symbols and Conditions

Understanding Flowchart Symbols and Conditions

12th Grade - University

10 Qs

KS4 Programming Techniques (1)

KS4 Programming Techniques (1)

8th - 10th Grade

10 Qs

ALGORITMA

ALGORITMA

10th Grade

10 Qs

Python Conditions

Python Conditions

11th Grade

10 Qs

Quiz 2 Javascript

Quiz 2 Javascript

12th Grade

10 Qs

ICT 9 - Programming Quiz Part 4

ICT 9 - Programming Quiz Part 4

9th Grade

10 Qs

Intro Loop Vocabulary

Intro Loop Vocabulary

9th - 12th Grade

12 Qs

Unit 4 Vocabulary

Unit 4 Vocabulary

11th - 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