AP CSP BJC Unit 5 Vocabulary

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

1/48

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

49 Terms

1
New cards

problem

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

2
New cards

instance of a problem

one case of a problem, with specific inputs

3
New cards

linear/sequential search

checks each element of a list in order (takes linear time); can use sorted or unsorted lists; complete traversal

4
New cards

binary search

starts in the middle of a sorted list and repeatedly eliminates half of the list until it either finds the desired value or eliminates the entire list; must use sorted lists; partial traversal

5
New cards

efficiency

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

6
New cards

linear time

number of steps is proportional to input size (doubling input doubles time required)

7
New cards

sublinear time

number of steps grows more slowly than input size

8
New cards

constant time

takes same number of steps regardless of input size

9
New cards

quadratic time

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

10
New cards

polynomial time

number of steps is less than or equal to a power of the size of the input

11
New cards

exponential time

number of steps is proportional to an exponential function of the size of the input

12
New cards

reasonable time

any algorithm that runs in polynomial time (not exponential)

13
New cards

heuristic solution

polynomial-time algorithm that gives an approximation of the solution

14
New cards

decision problem

problem with true/false answer

15
New cards

optimization problem

problem with goal of finding the best solution among many

16
New cards

decidable problem

decision problem where it is possible to write an algorithm that will give a correct output for all inputs

17
New cards

undecidable problem

decision problem where it is not possible to write an algorithm that will give a correct output for all inputs (may be possible for some inputs)

18
New cards

sequential computing

operations performed in order one at a time

19
New cards

parallel computing

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

20
New cards

distributed computing

form of parallel computing that uses multiple computers

21
New cards

processor

piece of circuitry inside a computer that processes instructions from computer programs

22
New cards

speedup

how many times as fast the parallel solution is compared to the sequential solution (sequential/parallel; will always be greater than or equal to 1)

23
New cards

model

computer representation of an object (or system of objects) in the real world

24
New cards

simulation

algorithm that uses models of real things or situations that vary over time; abstraction designed for a particular purpose

25
New cards

data

values that the computer receives from various sources

26
New cards

information

humanly-useful patterns extracted from data

27
New cards

correlation

type of information; dependence between two variables

28
New cards

insight

meaningful conclusion drawn from analyzing information

29
New cards

CSV (comma-separated values)

tables of data stored with commas between each item in a row and line breaks between each row in the table

30
New cards

spreadsheet

two-dimensional data organized in rows and columns

31
New cards

dataset

general term for any collection of data

32
New cards

record

one row in a dataset (other than column headings); horizontal slice; e.g. data for one student

33
New cards

field

one item of a record in a dataset; e.g. one student’s homeroom teacher

34
New cards

column

list containing data from one field for all records of a dataset; vertical slice; e.g. every students’ homeroom teachers

35
New cards

cleaning data

process of making the data uniform without changing its meaning

36
New cards

bias

reasons the data might not mean what they seem to mean

37
New cards

classifying data

distributing data into groups based on common characteristics

38
New cards

mode

value that appears most often in a dataset

39
New cards

metadata

data about data; gives additional information about the data

40
New cards

proof by contradiction

two-step proof that a statement is false

  1. assuming the statement is true

  2. showing the assumption creates a contradiction

41
New cards

undecidable problem

might be true or might be false; no algorithm can ever be written that will always give a correct true/false decision for every input value; unsolvable

42
New cards

self-contradictory statement

can be neither true nor false

43
New cards

provably true/false

can indisputably be proven true or false

44
New cards

infinite loop

sequence of computer instructions that repeats forever

45
New cards

unsolvable problem

no algorithm can ever be written to find the solution

46
New cards

halting problem

problem of determining whether the program will finish running or continue to run forever; undecidable

47
New cards

Halting Theorem

proof that halting problem is undecidable; first proved by Alan Turing

48
New cards

autonomous weapon

weapon that can decide to fire itself without human decision-making

49
New cards

drone

remotely-piloted aircraft