CSP: Collegeboard: Terminology

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

1/134

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.

135 Terms

1
New cards

Computing innovation

includes a program as an integral part of its function. I.e. It can be physical (self-driving car), nonphysical computing software (picture editing software), or a nonphysical computing concept (e-commerce)

2
New cards

Program

a collection of program statements that performs a specific task when run by a computer, often called software. Needs to work for a variety of inputs and situations

3
New cards

Code segment

a collection of program statements that is part of a program

4
New cards

Behavior of a program

how a program functions during execution and is often described by how a user interacts with it

5
New cards

Program Input

data sent to a computer for processing by a program (i.e. tactile, audio, visual, text). It affects the output produced by the program and come from user or other programs

6
New cards

Event

associated with an action and supplies input data to a program. I.e. Generated when a key is pressed, a mouse is clicked, a program is started, or any defined action that occurs and affects the flow of execution

7
New cards

Program Output

any data sent from a program to a device (i.e. tactile, audio, visual, text). Based on program input, or prior state

8
New cards

Iterative development process

requires refinement and revision based on feedback, testing, or reflection. Includes revisiting earlier phases.

9
New cards

Incremental development process

is one that breaks the problem into smaller pieces, ensuring they work before piecing it together

10
New cards

Investigation in a development process

essential to understand and identify the requirements through the perspective of users

11
New cards

Program requirements

describe the function of a program, and can include a description of user interactions the program will provide

12
New cards

Program specification

defines the requirements for the program

13
New cards

Design phase (in a development process)

outlines how to accomplish the program specification

14
New cards

Program documentation

a written description of the function of a code segment, event, and procedure, or program and how it was developed

15
New cards

Comments

a form of program documentation written into the program to be read by people and do not affect how a program runs

16
New cards

Logic error

a mistake in the algorithm or program that causes it to behave incorrectly or unexpectedly

17
New cards

Syntax error

a mistake in the program where the rules of the programming language are not followed

18
New cards

Run-time error

a mistake in the program that occurs during the execution of a program. Programming languages define their own run-time error

19
New cards

Overflow error

an error that occurs when a computer attempts to handle a number that is outside of the defined range of values

20
New cards

Testing (in the development process)

uses defined inputs to ensure an algorithm or program produces an expected outcome. Allows programmers to revise and reflect.

21
New cards

Bit (binary digit)

either 0 or 1

22
New cards

Byte

8 bits

23
New cards

Abstraction

the process of reducing complexity by focusing on the main idea. Hiding irrelevant details and using useful details, abstraction reduces complexity and allows one to focus on the idea

24
New cards

Analog data

has values that change smoothly (i.e. pitch, volume, colors)

25
New cards

Sampling technique

allows a close approximation of analog data by measuring values of the analog signal at regular intervals (samples). Samples are measured to figure out the exact bits needed to store each sample.

26
New cards

Samples

the value of the analog signal at regular intervals.

27
New cards

Data compression

can reduce the size (# of bits) of transmitted or stored data

28
New cards

Lossless data compression algorithms

can usually reduce the number of bits stored or transmitted while guaranteeing complete preservation of the original data

29
New cards

Lossy data compression algorithms

can reduce the number of bits stored or transmitted but only allow a reconstruction of an approximation of the original data

30
New cards

Information

the collection of facts and patterns extracted from data

31
New cards

Metadata

data about data (the piece of data is an image, the meta data is the date, file size, location)

32
New cards

Cleaning data

a process that makes the data uniform without changing their meaning (i.e. replacing all equivalent abbreviations, spellings, or capitalization with the same word)

33
New cards

Process to extract and modify information from data

Transforming every element of a data set (doubling every element in a list, adding a parent email to each student). Filtering a data set (keeping only positive numbers, keep only students who choose band). Combining or comparing data (adding up a list of numbers, finding the student with the greatest GPA). Visualizing a data set through a chart, graph, visual representation

34
New cards

To gain insight and knowledge

Programs are used in an iterative and interactive way when processing information (by filtering and cleaning digital data). Combining data sources, clustering data, and classifying data. Translating and transforming digitally represented information

35
New cards

When data are transformed using programs, patterns emerge

36
New cards

Variable

an abstraction inside a program that can hold a value. Each variable has an associated data storage that represents a singular value (i.e. int, or list)

37
New cards

Data types

represent data which are referenced using variables (numbers, booleans, lists, and strings)

38
New cards

Assignment operator (←)

allows a program to change the value represented by a variable

39
New cards

List

an ordered sequence of elements. Syntax

40
New cards

Element

an individual value in a list that is assigned a unique index

41
New cards

Index

a common method for reference the elements in a list or string using ints—start at 1

42
New cards

String

an ordered sequence of characters

43
New cards

Algorithm

a finite set of instructions that accomplish a specific task

44
New cards

Sequencing

the application of each step of an algorithm in the order in which the code statements are given

45
New cards

Code statement

a part of program code that expresses an action to be carried out

46
New cards

Expression

can consist of a value, variable, operator, or procedure call that returns a value. Evaluated to produce a single value, following PENDAS

47
New cards

Arithmetic operators

apart of many programming languages (+, -, /, *, MOD)

48
New cards

Modulus (MOD)

to find the remainder between a and b. Syntax

49
New cards

String concatenation

joins together two or more strings end-to-end to make a new string

50
New cards

Substring

part of an existing string

51
New cards

Boolean value

either true or false

52
New cards

Relational Operators

to test the relationship between two variables, expressions or value. Syntax

53
New cards

Logical operators

evaluate to a boolean value (NOT, AND, OR)

54
New cards

NOT condition

evaluates true if condition is false, otherwise evaluate to false

55
New cards

Condition1 AND Condition2

evaluates true if both conditions are true, otherwise false

56
New cards

Condition1 OR Condition2

evaluates false if both conditions are false, otherwise true

57
New cards

Selection

determines which parts of an algorithm are executed based on a condition being true or false

58
New cards

Conditional statements (if-statements)

affect the sequential flow of control by executing different statements based on the value of a boolean expression

59
New cards

Nested Conditional Statements

consist of conditional statements within conditional statements

60
New cards

Iteration

a repeating portion of an algorithm. Iteration repeats a specified number of times or until a given condition is met

61
New cards

Accessing an element by index

my_list[i]

62
New cards

Inserting Elements at a given index

INSERT(my_list, i, value)

63
New cards

Adding elements to the end of the list

APPEND(my_list, value)

64
New cards

Remove elements

Remove(my_list, i)

65
New cards

Length of a list

LENGTH(my_list)

66
New cards

Iteration statement to traverse a list

FOR EACH item IN my_list

67
New cards

Complete Traversal

all elements in the list are accessed

68
New cards

Partial Traversal

only a portion of elements are accessed

69
New cards

Linear search or sequential search algorithm

checks each element in a list, in order, until the desired value is found or all elements in a list have been checked

70
New cards

Procedure (method, function)

a named group of programming instructions that may have parameters and return values

71
New cards

Parameters

input variables of a procedure

72
New cards

Arguments

specify the values of the parameters when a procedure is called

73
New cards

Header of a Procedure in Code

PROCEDURE my_procedure (parameter 1, parameter 2)

74
New cards

Calling a Procedure in Code

my_procedure(arg1, arg2)

75
New cards

Displaying a expression in Code

DISPLAY (expression)

76
New cards

Returning an expression in Code

RETURN (expression)

77
New cards

To get input from a user, and returning the value in Code

INPUT (value)

78
New cards

Procedural Abstraction

an abstraction that provides a name for a process, and allows a procedure to be used, only knowing what it does, not how it does it

79
New cards

Modularity

the subdivision of a computer program into separate subprograms

80
New cards

Software library

contains procedures that may be used in creating new programs

81
New cards

Application Program Interfaces (APIs)

specifications for how the procedures in a library behave and can be used

82
New cards

How to randomly generate an integer in Code

RANDOM (a, b). Note

83
New cards

Simulations

a representation that uses varying sets of values to reflect the changing state of a phenomenon. Abstractions of more complex objects or phenomena for a specific purpose. Mimic real-world events without the constraints of the real world

84
New cards

Problem

a general description of a task that can (or cannot) be solved algorithmically.

85
New cards

An instance of a problem

includes specific input

86
New cards

Decision Problem

a problem with a yes/no answer (is there a path from A to B)

87
New cards

Optimization Problem; a problem with the goal of finding the “best” solution among many (what is the shortest path from A to B

88
New cards

Efficiency

an estimation of the amount of computational resources used by an algorithm. Expressed as a function of the size of the input

89
New cards

Reasonable Amount of Time

algorithms with a polynomial efficiency or slower (constant, linear, square, cube)

90
New cards

Unreasonable Amount of Time

algorithms with exponential or factorial efficiencies

91
New cards

Heuristic

an approach to a problem that produces a solution that is not guaranteed to be optimal—used when techniques that are guaranteed to always find an optimal solution are impractical

92
New cards

Decidable Problem

a decision problem for which an algorithm can be written to produce a correct output for all inputs (is the number even)

93
New cards

Undecidable Problem

a decision problem for which no algorithm can be constructed that is always capable of providing a correct yes or no problem

94
New cards

Computing device

a physical artifact that can run a program (computers, tablets, servers, routers, and smart sensors)

95
New cards

Computing system

a group of computing devices and programs working together for a common purpose

96
New cards

Computer network

a group of interconnected computing devices capable of sending or receiving data

97
New cards

Path (specifically between two computing devices on a computer network)

a sequence of directly connected computing devices that begins at the sender and ends at the receiver

98
New cards

Routing

the process of finding a path from sender to receiver

99
New cards

Bandwidth

the maximum amount of data that can be sent in a fixed amount of time in a computer network. Measured in bits per second

100
New cards

Internet

a computer network that consists of interconnected networks that use standardized, open (non proprietary) communication protocols