Unit 2 and 3 Vocab Codio

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

1/30

flashcard set

Earn XP

Description and Tags

AP CSP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

31 Terms

1
New cards
pair programming
A common model of programming that facilitates collaboration
2
New cards
program
A collection of program students that performs a specific task when run by a computer. A program is often referred top as software.
3
New cards
code segment
A collection of program statements that are part of a program.
4
New cards
behavior of a program
How a program functions during execution and it is often described by how a user interacts with it.
5
New cards
event
Associated with an action and supplies input data to a program.
6
New cards
program documentation
A written description of a function of a code segment, event, procedure, or program and how it was developed.
7
New cards
comments
A form of program documentation written into he program to be read by people and does not affect how a program runs.
8
New cards
iterative development process
a development process that requires refinement and revision based on feedback, testing, or reflection throughout the process
9
New cards
incremental development process
a development process that breaks the problem into smaller pieces and makes sure each piece works before adding it to the whole
10
New cards
program inputs
data sent to a computer for processing by a program
11
New cards
program outputs
any data sent from a program to a device
12
New cards
variable
an abstraction inside a program that can hold a value
13
New cards
conditional statements or if-statements
code statements that affect the sequential flow of control by executing different statements based on the value of a Boolean expression
14
New cards
Boolean value
either true or false
15
New cards
nested conditional statements
consist of conditional statements within conditional statements
16
New cards
iteration statements
code statements that change the sequential flow of control by repeating a set of statements zero or more times, until a stopping condition is met
17
New cards
procedure
a named group of programming instructions that may have parameters and return values
18
New cards
parameters
input variables of a procedure
19
New cards
arguments
specify the values of the parameters when a procedure is called
20
New cards
bit
shorthand for binary digit, either 0 or 1
21
New cards
byte
8 bits
22
New cards
number bases
used to represent data, includes binary and decimal
23
New cards
binary (base 2)
uses only combinations of the digits zero and one
24
New cards
decimal (base 10)
uses only combinations of the digits 0-9
25
New cards
modulus operator
arithmetic operator used to return the remainder of a division operation
26
New cards
overflow error
an error caused by the limitation of the range of values and mathematical operations on those values by representing integers with a fixed number of bits
27
New cards
round-off error
an error caused by the limitation of using a fixed number of bits to represent real numbers which limits the range and mathematical operations on those values
28
New cards
list
an ordered sequence of elements
29
New cards
index
a common method for referencing the elements in a list or strong using natural numbers
30
New cards
complete list traversal
all elements in the list are accessed
31
New cards
partial list traversal
only a portion of elements in the list are accessed