Conditional Statements

Conditional Statements

8th Grade

9 Qs

quiz-placeholder

Similar activities

Python Operators & Expressions

Python Operators & Expressions

8th - 11th Grade

13 Qs

Python (Selection)

Python (Selection)

8th - 10th Grade

13 Qs

Selection Control Structure  Quiz

Selection Control Structure Quiz

6th Grade - University

10 Qs

Java Quiz 4: Booleans and Conditional Statements

Java Quiz 4: Booleans and Conditional Statements

6th - 12th Grade

7 Qs

CLASS 8 - VIVA 2024-25

CLASS 8 - VIVA 2024-25

8th Grade

10 Qs

Iterative Statements in Python  and Cyber Ethics

Iterative Statements in Python and Cyber Ethics

8th Grade

10 Qs

Gaming/JavaScript

Gaming/JavaScript

8th Grade

14 Qs

C++ Basic

C++ Basic

8th Grade

10 Qs

Conditional Statements

Conditional Statements

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Michelle Catarroja

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Conditional Statements allow you to execute specific blocks of code based on conditions.

TRUE

FALSE

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Executes a block of code if a specified condition is true.

if statement

else statement

else if statement

switch

ternary operator

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Executes a block of code if the same condition of the preceding if statement is false.

if statement

else statement

else if statement

switch

ternary operator

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Adds more conditions to the if statement, allowing for multiple alternative conditions to be tested.

if statement

else statement

else if statement

switch

ternary operator

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Evaluates an expression, then executes the case statement that matches the expression’s value.

if statement

else statement

else if statement

switch

ternary operator

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Provides a concise way to write if-else statements in a single line.

if statement

else statement

else if statement

switch

ternary operator

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if both expressions are true it returns true, otherwise it returns false. denotes as &&

AND

OR

NOT

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

if one or both expressions are true it returns true, otherwise it returns false. denotes as ||

AND

OR

NOT

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

returns true for false statements and false for true statements. denotes as !

AND

OR

NOT