BJC Unit 5 Review

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

1/32

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.

33 Terms

1
New cards

A problem

a general description of a task that may (or may not) be solved algorithmically

2
New cards

A linear search (or sequential search) algorithm…

checks each element of a list in order, a process which takes linear time.

3
New cards

A binary search algorithm starts…

in the middle of a sorted list and repeatedly eliminates half the list until either the desired value is found or all elements have been eliminated.

4
New cards

Linear search does a ________traversal of the list. Binary search saves time by doing a ___________ traversal of the list.

complete, partial

5
New cards

The relationship between the input size and the number of steps required to solve a problem

the efficiency of the algorithm used to solve the problem.

6
New cards

the number of steps is proportional to the input size; doubling the input size doubles the time required

linear time

7
New cards

the number of steps grows more slowly than the size

sublinear time

8
New cards

it takes the same number of steps regardless of input size

constant time

9
New cards

the number of steps is proportional to the square of the input size

quadratic time

10
New cards

the number of steps is less than or equal to a power of the size of the input, such as constant (n0), sublinear, linear (n1), quadratic (n2), or cubic (n3)

polynomial time

11
New cards

the number of steps is proportional to an exponential function of the size of the input, such as 2n, 10n, etc., which is much slower than any polynomial

exponential time

12
New cards

a problem with a true/false answer

decision problem

13
New cards

a problem with the goal of finding the best solution among many

optimization problem

14
New cards

a decision problem for which it's possible to write an algorithm that will give a correct output for all inputs

A decidable problem

15
New cards

It's not possible to write an algorithm that will give a correct output for all inputs—even though it might be possible for some of them.

An undecidable problem

16
New cards

operations are performed in order one at a time

sequential computing

17
New cards

the program is broken into smaller steps, some of which are performed at the same time

parallel computing

18
New cards

a form of parallel computing that uses multiple computers

Distributed computing

19
New cards

computer representations of real things or situations that vary over time.

Simulations

20
New cards

the values that computers receive from various sources, including human activity, sensors, etc.

Data

21
New cards

the humanly-useful patterns extracted from data

Information

22
New cards

one row in a dataset

record

23
New cards

one item of a record in a dataset

field

24
New cards

a list containing the data from one field for all records in a dataset

column

25
New cards

data about data

Metadata

26
New cards

reasonable time

polynomial time

27
New cards

unreasonable time

exponential time

28
New cards

dual-use technology

application of technology both in civilian and military targets

29
New cards

how many times as fast the parallel solution is compared to the sequential solution

speedup

30
New cards
31
New cards
32
New cards
33
New cards