Unit 7 - Parameters, Return, and Libraries Unit

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

1/6

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

7 Terms

1
New cards

Parameter

a variable in a function definition. Used as a placeholder for values that will be passed through the function.

2
New cards

Argument

the value passed to the parameter

3
New cards

Return

used to return the flow of control to the point where the procedure (also known as a function) was called and to return the value of expression.

4
New cards

Procedural abstraction

a process that allows a procedure to be used only knowing what it does, not how it does it. Procedural abstraction allows a solution to a large problem to be based on the solution of smaller subproblems. This is accomplished by creating procedures to solve each of the subproblems.

5
New cards

Library

a group of functions (procedures) that may be used in creating new programs

6
New cards

API

Application Program Interface - specifications for how functions in a library behave and can be used

7
New cards

Modularity

the subdivision of a computer program into separate subprograms