unit 2 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

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, event, procedure, or program and how it was developed

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, 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. Input can come in a variety of forms, such as tactile, audio, visual, or text.

11
New cards

program outputs

any data sent from a program to a device. Program output can come in a variety of forms, such as tactile, audio, visual, or text.

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, but that value can be a list or other collection that in turn contains multiple values.

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