ICAS Year 7 Algorithms And Pseudocode

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

1/23

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

24 Terms

1
New cards

Algorithm

A step-by-step set of instructions to solve a problem.

2
New cards

Pseudocode

A way of writing algorithms using simple, structured English.

3
New cards

START

The beginning of a pseudocode algorithm.

4
New cards

END

The end of a pseudocode algorithm.

5
New cards

INPUT

Used to get data from the user.

6
New cards

OUTPUT

Used to show data to the user.

7
New cards

SET

Used to assign a value to a variable.

8
New cards

Variable

A name used to store data that can change during the algorithm.

9
New cards

IF…THEN

A decision structure that runs steps only if a condition is true.

10
New cards

ELSE

Used to run different steps if the IF condition is false.

11
New cards

REPEAT…UNTIL

A loop that repeats steps until a condition is true.

12
New cards

WHILE…DO

A loop that repeats while a condition remains true.

13
New cards

Sequence

Steps in order, one after another.

14
New cards

Selection

Choosing between options (like IF…THEN…ELSE).

15
New cards

Iteration

Repeating steps (using loops like WHILE or REPEAT).

16
New cards

Trace table

A table used to track values of variables during each step of the algorithm.

17
New cards

Flowchart

A diagram that shows the steps of an algorithm using shapes and arrows.

18
New cards

Comment

A note in pseudocode to explain what something does (ignored when running).

19
New cards

Bug

A mistake or error in the algorithm.

20
New cards

Debugging

Finding and fixing errors in an algorithm or pseudocode.

21
New cards
22
New cards
Sequence
Instructions run one after another in order.
23
New cards
Selection (Decision)
Choose between options based on a condition (if-then-else).
24
New cards
Iteration (Loop)
Repeat steps until a condition is met (e.g., “repeat 5 times” or “while condition true”).