✍U7 - Parameters, Return, & Libraries Vocabulary

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/6

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.

7 Terms

1
New cards

Parameter

input variables in a procedure or function definition, used as a placeholder for values that will be passed through the function; Using parameters allows procedures to be generalized, enabling the procedures to be reused with a range of input values or arguments.

2
New cards

Arguments

specify the values of the parameter when a procedure is called

3
New cards

Return

returns a value and is used to return the flow of control to the point where the procedure or function was called

4
New cards

Procedural abstraction

provides a name for a process and allows a procedure to be used only knowing what it does, not how it does it;  improves readability and allows a solution to a large problem to be based on the solutions of smaller subproblems. This is accomplished by creating procedures to solve each of the subproblems.

5
New cards

Modularity

the subdivision of a computer program into separate subprograms

6
New cards

Library

a group of functions or procedures that may be used in creating new programs; the use of libraries simplifies the task of creating complex programs.

7
New cards

API

Application Program Interface - specifications for how functions in a library behave and can be used; Documentation for an API/library is necessary in understanding the behaviors provided by the API/library and how to use them.