codio unit 2

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

pair programming

a common model of programming that facilitates collaboration

2
New cards

program

a collection of program statements that performs a specific task when run by a computer. A program is often referred to 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 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 the function of a code segment

7
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

8
New cards

iterative development process

a development process that requires refinement and revision based on feedback

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. Input can come in a variety of forms

11
New cards

program outputs

any data sent from a program to a device. Program output can come in a variety of forms

12
New cards

variable

an abstraction inside a program that can hold a value. Each variable has associated data storage that represents one value at a time

13
New cards

conditional statements

or "if-statements"

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

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