Computing Test 3

5.0(1)
studied byStudied by 2 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

Algorithm

A step-by-step set of instructions telling a code, computer, or anything that can follow instructions to do something.

2
New cards

Euclid’s Algorithm

The oldest algorithm that calculates the largest common divisor.

3
New cards

Flowchart

A visual representation of algorithms that uses shapes to denote different types of actions or decisions.

4
New cards

Oval in Flowcharts

Signifies the start or end of the process.

5
New cards

Rectangle in Flowcharts

Notes the process for an operation or step.

6
New cards

Arrow in Flowcharts

Indicates the flow between steps in a flowchart.

7
New cards

Diamond in Flowcharts

Signifies a decision point requiring a yes or no answer.

8
New cards

Parallelogram in Flowcharts

Used for input or output operations in a flowchart.

9
New cards

Bubble Sort

A sorting algorithm that compares and swaps adjacent elements until the list is sorted.

10
New cards

Merge Sort

A sorting algorithm that divides the list into pairs, sorts them, and merges them back together.

11
New cards

Linear Search

A search method that checks each item individually until it finds the match or reaches the end.

12
New cards

Binary Search

A search method that halves a sorted list to find a target item by eliminating non-matching halves.