Making Selections

Making Selections

10th Grade

8 Qs

quiz-placeholder

Similar activities

Java

Java

9th - 12th Grade

12 Qs

Code HS Tech Apps and Coding

Code HS Tech Apps and Coding

9th - 12th Grade

12 Qs

Control Structures - Selection in Python

Control Structures - Selection in Python

8th Grade - University

11 Qs

CodeHS Karel Unit

CodeHS Karel Unit

9th - 12th Grade

12 Qs

4.7_G3

4.7_G3

10th Grade

8 Qs

Chapter 04 Worksheet

Chapter 04 Worksheet

10th Grade

10 Qs

Selection Control Structure  Quiz

Selection Control Structure Quiz

6th Grade - University

10 Qs

KS4 Python While Loops and For Loops

KS4 Python While Loops and For Loops

9th - 11th Grade

13 Qs

Making Selections

Making Selections

Assessment

Quiz

Computers

10th Grade

Medium

Created by

Jefferson Rabelas

Used 25+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Represent the steps which tell the computer what to do.

Algorithm

Instructions

Flowchart

Syntax

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Direct the order in which the program instructions are executed.

Control structure

Repetition structure

Selection structure

For Next

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consists of one or more statements that are executed repeatedly as long as particular condition is met.

Control structure

Repetition structure

Selection structure

Do Loop structure

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Also known as decision structure that allows the program to make a decision or comparison and then select one of two paths, depending on the result of the comparison.

Control structure

Repetition structure

Selection structure

Do Loop structure

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is the simplest selection control structure which executes a statement or a group of statements based on the value of condition.

If ElseIf Else

Nested If Then Else

If Then Else

If statement

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is a selection control structure that directs the computer to perform a set of instructions based on the result of the condition.

If ElseIf Else

Nested If Then Else

If Then Else

If statement

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Contains a series of decisions in which the algorithm tests a variable or expression separately for which value that the variable or expression might assume.

Algorithm

Control structure

Instruction

If statement

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is useful when you must make several choices based on data values.

Select Case

Control structure

Nested If Then Else

If statement