Making Selections

Making Selections

10th Grade

8 Qs

quiz-placeholder

Similar activities

Karel Final

Karel Final

9th - 12th Grade

10 Qs

Code HS Tech Apps and Coding

Code HS Tech Apps and Coding

9th - 12th Grade

12 Qs

CodeHS Unit 1-6

CodeHS Unit 1-6

9th - 12th Grade

12 Qs

Codehs

Codehs

9th - 12th Grade

12 Qs

Control Structure

Control Structure

9th Grade - University

12 Qs

Python IF Statements

Python IF Statements

9th - 12th Grade

10 Qs

Programming Basics

Programming Basics

9th - 10th Grade

10 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