AP CSP Flashcards

(33 cards)

1
Q

What is Sequencing?

A

Putting steps in an order.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Selection?

A

Deciding which steps to do next.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Iteration?

A

Doing some steps over and over.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a Heuristic?

A

Provides a ‘good enough’ solution to a problem when an actual solution is impractical or impossible.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a Decision Problem?

A

A problem with a yes/no answer (e.g., is there a path from A to B?).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is an Optimization Problem?

A

A problem with the goal of finding the ‘best’ solution among many (e.g., what is the shortest path from A to B?).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an Undecidable Problem?

A

A problem for which no algorithm can be constructed that is always capable of providing a correct yes-or-no answer.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is Sequential Computing?

A

A model in which programs run in order, one command at a time.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is Parallel Computing?

A

A model in which programs are broken into small pieces, some of which are run simultaneously.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is Distributed Computing?

A

A model in which programs are run by multiple devices.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is a Parameter?

A

A variable in a function definition. Used as a placeholder for values that will be passed through the function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is an Argument?

A

The value passed to the parameter.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is Return?

A

Used to return the flow of control to the point where the procedure (also known as a function) was called and to return the value of expression.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is an API?

A

Application Program Interface - specifications for how functions in a library behave and can be used.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is Modularity?

A

The subdivision of a computer program into separate subprograms.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is Traversal?

A

The process of accessing each item in a list one at a time.

17
Q

What is Data Abstraction?

A

Manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

18
Q

What is Lossless Compression?

A

A process for reducing the number of bits needed to represent something without losing any information. This process is reversible.

19
Q

What is Lossy Compression?

A

A process for reducing the number of bits needed to represent something in which some information is lost or thrown away. This process is not reversible.

20
Q

What is Analog Data?

A

Data with values that change continuously, or smoothly, over time. Some examples of analog data include music, colors of a painting, or position of a sprinter during a race.

21
Q

What is Digital Data?

A

Data that changes discretely through a finite set of possible values.

22
Q

What is Sampling?

A

A process for creating a digital representation of analog data by measuring the analog data at regular intervals called samples.

23
Q

What is the Internet?

A

A computer network consisting of interconnected networks that use standardized, open (nonproprietary) communication protocols.

24
Q

What is the World Wide Web?

A

A system of linked pages, programs, and files.

25
What is a Computing Device?
A machine that can run a program, including computers, tablets, servers, routers, and smart sensors.
26
What is a Computing System?
A group of computing devices and programs working together for a common purpose.
27
What is a Computing Network?
A group of interconnected computing devices capable of sending or receiving data.
28
What is Pair Programming?
A collaborative programming style in which two programmers switch between the roles of writing code and tracking or planning high level progress.
29
What is Citizen Science?
Scientific research conducted in whole or part by distributed individuals, many of whom may not be scientists, who contribute relevant data to research using their own computing devices.
30
What is Cleaning Data?
A process that makes the data uniform without changing its meaning (e.g., replacing all equivalent abbreviations, spellings, and capitalizations with the same word).
31
What is Correlation?
A relationship between two pieces of data, typically referring to the amount that one varies in relation to the other.
32
What is Crowdsourcing?
The practice of obtaining input or information from a large number of people via the Internet.
33
What is an Expression?
A combination of operators and values that evaluates to a single value.