Making Selections

Making Selections

10th Grade

8 Qs

quiz-placeholder

Similar activities

CodeHS Unit 1-6

CodeHS Unit 1-6

9th - 12th Grade

12 Qs

CodeHS Test

CodeHS Test

9th - 12th Grade

12 Qs

VB If...Then...Else Statements

VB If...Then...Else Statements

10th Grade

10 Qs

49. Programming 1 : Basic Programming Constructs

49. Programming 1 : Basic Programming Constructs

9th - 12th Grade

11 Qs

CodeHS 2.12 Loop-and-a-Half 😝

CodeHS 2.12 Loop-and-a-Half 😝

9th - 12th Grade

10 Qs

Karel the Dog Code Quiz

Karel the Dog Code Quiz

9th - 12th Grade

12 Qs

Codehs Practice Test

Codehs Practice Test

9th - 12th Grade

12 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