Unit 2- Selection and Iteration Vocab

0.0(0)
studied byStudied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
full-widthPodcast
1
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:10 PM on 10/29/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

18 Terms

1
New cards

algorithm

a set of instructions that accomplish a task

2
New cards

condition

determines whether or not to execute a block of code

3
New cards

iteration condition

a control structure that repeatedly executes a block of code

4
New cards

selection statement

a statement that only executes when a condition is true

5
New cards

logical operator

an operator that returns a boolean

6
New cards

two-way selection statement

specifies a block of code to execute when the condition is true and a block of code to execute when the condition is false

7
New cards

alias

a reference variable that points to the same object as another reference variable

8
New cards

nested conditional statement

a conditional statement nested inside of another conditional statement

9
New cards

compound Boolean expression

an expression using logical operators that evaluates to a Boolean

10
New cards

short-circuited evaluation

a process in which the evaluation of a logical expression exits when the result is clear, even before the complete evaluation of the expression

11
New cards

truth table

a table used to determine the truth values of a Boolean expression

12
New cards

De Morgan’s Laws

a set of rules that describe how to simplify complex Boolean expressions

13
New cards

multi-selection statements

a statement that selects a single action from three or more conditional statements based on which Boolean expressions are true

14
New cards

decrement

to decrease a value by one

15
New cards

increment

to increase a value by one

16
New cards

loop control variable

a variable that is changed by a constant variable and determines the end of a loop

17
New cards

off-by-one error

an error that occurs when a loop repeats one time too many or one time too few

18
New cards

nested loop

a loop inside of another loop