Making Selections

Making Selections

10th Grade

8 Qs

quiz-placeholder

Similar activities

Hour of Code

Hour of Code

6th - 12th Grade

12 Qs

Algoritmos y estructuras de programación

Algoritmos y estructuras de programación

10th Grade

10 Qs

If-Else in Java

If-Else in Java

9th - 12th Grade

10 Qs

if/else statements quiz

if/else statements quiz

9th Grade - University

10 Qs

Alice 2 - Chapter 2

Alice 2 - Chapter 2

7th - 12th Grade

12 Qs

Computer Misuse Act

Computer Misuse Act

10th - 12th Grade

12 Qs

CodeHS 1.13 Control Structures Example

CodeHS 1.13 Control Structures Example

9th - 12th Grade

8 Qs

Evaluasi Bab 6

Evaluasi Bab 6

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