COMP1 Reviewer — Flowcharting & Control Structures

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/23

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering flowchart definitions, symbols, and sequence control structures from the COMP1 Reviewer notes.

Last updated 12:27 PM on 8/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

24 Terms

1
New cards

Flowchart

A graphical representation of the logical sequence of steps to be performed in a program.

2
New cards

I – P – O

The basic pattern every flowchart follows, standing for Input (data received), Process (operations performed), and Output (results produced).

3
New cards

Terminal

A flowcharting symbol that marks the start and end point of the program.

4
New cards

Initialization

A flowcharting symbol used to assign initial values to variables, such as NUM1=0NUM1 = 0 or SUM=0SUM = 0.

5
New cards

Decision

A flowcharting symbol that selects a path based on a condition, typically marked as yes/no or true/false.

6
New cards

Data

A flowcharting symbol representing variables to be processed; it is used specifically for input/output statements.

7
New cards

Process

A flowcharting symbol used to execute arithmetic operations and calculations.

8
New cards

Arrow Lines

Symbols that show the direction of flow in the processing of data.

9
New cards

Off-Page Connector

A symbol that connects one part of the flowchart to another part located on the next page.

10
New cards

On-Page Connector

A symbol that connects one part of the flowchart to another part on the same page.

11
New cards

Predefined Process

A symbol representing a group of operations that are detailed in a separate flowchart.

12
New cards

Manual Process

A symbol indicating that a manual process is to be performed.

13
New cards

Document

A flowcharting symbol representing a printed document or report.

14
New cards

Display

A flowcharting symbol representing information shown on a display, such as a screen.

15
New cards

Sequential Access Storage

A symbol representing data stored on sequential media, such as magnetic tape.

16
New cards

Direct Access Storage

A symbol representing data stored on a direct-access device.

17
New cards

Magnetic Disk

A symbol representing data stored on a magnetic disk.

18
New cards

Card

A symbol representing a punched card used as an input or output medium.

19
New cards

Punched Tape

A symbol representing punched tape used as an input or output medium.

20
New cards

Control Structure

A structure that organizes the flow of control in a program.

21
New cards

Three types of Control Structures

The three types consist of the sequence control structure, selection control structure, and iteration control structure.

22
New cards

Sequence Control Structure

A structure where control flows from one processing box to the next, and statements are executed one after another in the order they appear with no branching.

23
New cards

SUM calculation (Worked Example)

The formula used to compute the total of three numbers in a sequence flowchart: SUM=NUM1+NUM2+NUM3SUM = NUM1 + NUM2 + NUM3.

24
New cards

AVE calculation (Worked Example)

The formula used to compute the average of the sum in a sequence flowchart: AVE=SUM/3AVE = SUM / 3.