1/20
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai | Chat |
|---|
No analytics yet
Send a link to your students to track their progress
strong password
a password that is easy for a user to remember but would be difficult for someone else to guess based on knowledge of that user
algorithm
a finite set of instructions that accomplish a specific task
abstraction
the process of reducing complexity by focusing on the main idea
sequencing
the application of each step of an algorithm in the order in which the code statements are given
Algorithmic Bias
bias embedded into algorithms and any level of software development
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
binary search
a search algorithm that 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
linear or sequential search
search algorithms that check each element of a list, in order, until the desired value is found or all elements in the list have been checked
efficiency
an estimation of the amount of computational resources used by an algorithm
scalability
the capacity for a system to change in size and scale to meet new demands
undecidable problem
one in which no algorithm can be constructed that always leads to a correct yes-or-no answer
decidable problem
a decision problem for which an algorithm can be written to produce a correct output for all inputs
optimization problem
a problem with the goal of finding the “best” solution among many
decision problem
a problem with a yes/no answer
instance of a problem
a specific task that needs to be solved with specific input
problem
a general description of a task that can (or cannot) be solved algorithmically
programming language
used to implement algorithms executed by programs
decryption
the process of decoding the data
encryption
the process of encoding data to prevent unauthorized access
selection
determines which parts of an algorithm are executed based on a condition being true or false
iteration
a repeating portion of an algorithm