Unit 2 vocabulary review csp (codio)

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

1/18

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.

19 Terms

1
New cards

a common model of programming that facilitates collaboration

pair programming

2
New cards

a collection of program statements that performs a specific task when run by a computer, also known as software

program

3
New cards

a collection of program statements that are part of a program

program segment

4
New cards

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

behavior of a program

5
New cards

associated with an action and supplies input data to a program

event

6
New cards

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

program documentation

7
New cards

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

comments

8
New cards

a development process that requires refinement and revision based on feedback, testing, or reflection throughout the process

iterative development process

9
New cards

a development process that breaks the problem into smaller pieces and makes sure each piece works before adding it to the whole

incremental development process

10
New cards

data sent to a computer for processing by a program

program inputs

11
New cards

any data sent from a program to a device

program outputs

12
New cards

an abstraction inside a program that can hold a value

variable

13
New cards

code statements that affect the sequential flow of control by executing different statements based on the value of a Boolean expression

conditional statements, or if-statements

14
New cards

either true or false

Boolean value

15
New cards

consist of conditional statements within conditional statements

nested conditional statments

16
New cards

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

iteration

17
New cards

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

procedure

18
New cards

input variables of a procedure

parameters

19
New cards

specify the values of the parameters when a procedure is called

arguments