Code.org AP CSP Vocab Unit 7 - Parameters, Return, and Libraries

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/5

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.

6 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 function (also known as a procedure) was called and to return the value of the expression

4
New cards

Procedural abstraction

Allows a procedure to be used only knowing what it does, not how it does it. Allows a solution to a large problem to be based on the solution of smaller subproblems. This is accomplished by creating functions (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

Application Programming Interface (API)

Specifications for how functions in a library behave and can be used