Programming Fundamentals

0.0(0)
studied byStudied by 3 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

6 Terms

1
New cards

Sequence

Lines of code that run in the order they are written, one after the other.

2
New cards

Selection

When the flow of a program is changed, depending on a set of conditions.

3
New cards

Iteration

Repeating a line or a block of code using a loop.

4
New cards

Counter controlled iteration

When the code is repeated a fixed number of times e.g. using a for loop.

5
New cards

Variable

A named memory location that holds data that during the execution of a program. the data can change during execution.

6
New cards

Constant

A named memory location that holds data that during the execution of a program. the data can’t change during execution.