C++ Program Flowchart

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

1/14

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards based on Lesson 3: C++ Program Flowchart, detailing symbols, conventions, algorithms, and pseudocode.

Last updated 8:47 AM on 9/20/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Flowchart

A graphical representation of steps originating from computer science as a tool for representing algorithms and programming logic, used to visualize processes or make explicit the structure of problems and tasks.

2
New cards
<p>Terminator Symbol</p>

Terminator Symbol

A flowchart symbol represented by an oval shape that indicates the starting or ending point of a system.

3
New cards
<p>Process Symbol</p>

Process Symbol

A flowchart symbol represented by a box (rectangle) that indicates a particular operation or task.

4
New cards
<p>Decision Symbol</p>

Decision Symbol

A flowchart symbol represented by a diamond that indicates a decision or branching point leading to different sub-processes.

5
New cards
<p>Data Symbol</p>

Data Symbol

A flowchart symbol represented by a parallelogram that indicates information entering (input) or leaving (output) the system.

6
New cards

Flow Lines

Lines with arrows in a flowchart that represent the direction and sequence of flow from one symbol to another.

7
New cards

Flow Direction Conventions

Rules stating that flowchart flow should move top to bottom and left to right, lines should connect to symbols rather than other lines, and crossing lines should be avoided where possible.

8
New cards

Decision Rules

Guidelines requiring each decision diamond to ask only one question and have exactly two clearly labeled exit paths (typically "Yes" and "No").

9
New cards

Algorithm

A set of well-defined multiple steps used to generate a solution to a given problem and properly communicate those steps to a computer.

10
New cards

Pseudocode

A method of representing an algorithm using standard keywords and mathematical symbols without adhering to the specific syntax of a programming language.

11
New cards

Modulo (MOD)

An arithmetic operation in pseudocode used to calculate the remainder of a division operation.

12
New cards

Assignment Operator

A symbol in pseudocode, written as \leftarrow or ==

13
New cards

Logical Operations

Operations in pseudocode used for evaluating conditional statements, represented by keywords AND, OR, and NOT.

14
New cards

Comparison Operations

Operators in pseudocode used to compare values, including ==

15
New cards
<p>Clinical Case Flowchart</p>

Clinical Case Flowchart

A flowchart example that uses decision shapes intensively to show how patient visits and clinical cases are processed.