Programming I - Flowchart and Algorithms

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

1/16

flashcard set

Earn XP

Description and Tags

These flashcards cover key vocabulary and concepts related to flowcharts and algorithms as presented in the lecture notes.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

17 Terms

1
New cards

Algorithm

A sequence of steps that describes how to solve a problem.

2
New cards

Flowchart

A graphical representation of an algorithm that uses symbols to show the flow of information and processing.

3
New cards

Terminal Symbol

Symbol represented by a rounded rectangle that indicates the start and end points of an algorithm.

4
New cards

Input/Output Symbol

Symbol represented by a parallelogram that indicates input or output operations.

5
New cards

Selection Symbol

Symbol represented by a diamond that shows a decision point with two possible paths based on a condition.

6
New cards

Process Symbol

A rectangle that indicates an operation or instruction, such as mathematical computation or variable assignment.

7
New cards

Flow Line

Arrows in a flowchart that indicate the direction of flow of control and the sequence in which instructions are executed.

8
New cards

Connector

A small circle used in flowcharts to connect two segments that may not fit on the same page.

9
New cards

Repetition Structure

A part of a program that repeats actions based on a condition, also known as a loop.

10
New cards

Pre-Test Repetition

A repetition structure where the condition is tested before any actions are performed.

11
New cards

Post-Test Repetition

A repetition structure where the condition is tested after the action has been performed.

12
New cards

Decision Structure

A control structure where one of two possible actions is taken based on a condition.

13
New cards

Sequence Structure

Structure where program execution flows sequentially from top to bottom without skipping or repeating statements.

14
New cards

Basic Flowchart Symbols

Standardized symbols used to represent different types of actions or processes in a flowchart, such as terminal, process, input/output, and selection symbols.

15
New cards

Example of Flowchart

A practical demonstration of how to read numbers, perform calculations, and display results in a flowchart format.

16
New cards

Infinite Loop

A loop that continues indefinitely because the terminating condition is never met.

17
New cards

Average Calculation

The process of computing the average value from a given set of numbers.