Codio Unit 1 Vocab

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards
strong password
A password that is easy for a user to remember but would be difficult to guess based on knowledge given about that user.
2
New cards
algorithm
A finite set of instructions that accomplishes a specific task. Every algorithm can be constructed using combinations of sequencing, selection, and iteration.
3
New cards
abstraction
The process of reducing complexity by focusing on the main idea of the problem.
4
New cards
sequencing
The application of each step of an algorithm in the order in which the code statements are given
5
New cards
selection
The determination of the parts of an algorithm that are executed based on a condition being true or false.
6
New cards
iteration
A repeating portion of an algorithm that executes for a specified number of times or until a given condition is met.
7
New cards
encryption
The process of encoding data to prevent unauthorized access.
8
New cards
decryption
The process of decoding encrypted data.
9
New cards
programming language
Algorithms executed by programs that are implemented by using programming languages.
10
New cards
problem
A general description of a task that cannot be solved algorithmically
11
New cards
instance of a problem
A specific task that needs to be solved with a specific input
12
New cards
decision problem
A problem with a yes/no answer.
13
New cards
optimization problem
A problem with the goal of finding the “best” solution among many.
14
New cards
decidable problem
a decision problem for which an algorithm can be written to produce a correct output for all inputs.
15
New cards
undecidable problem
A problem in which no algorithm can be constructed that always leads to a correct yes-or-no answer.
16
New cards
scalability
The capacity for a system to change in size and scale to meet new demands.
17
New cards
efficiency
An estimation of the amount of computational resources used by an algorithm.
18
New cards
linear or sequential search
Algorithms that check each element in a list, in order, until the desired value is found or all elements in the list have been checked.
19
New cards
binary search
starts at the middle of a sorted data set of numbers and eliminates half of the data; this process repeats until the desired value is found or all elements have been eliminated.
20
New cards
heuristic
an approach to a problem that produces a solution that is not guaranteed to be optimal but may be used when techniques that are guaranteed to always find an optimal solution are impractical.
21
New cards
algorithmic bias
When a computing innovation systematically discriminates against certain individuals or groups and creates unfair outcomes for some and favorable outcomes for others.