Unit 7 - Parameters, Return, And Libraries Flashcards

1
Q

Parameter

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Argument

A

The value passed to the parameter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Return

A

Used to return the flow of control to the point where the procedure (aka function) was called and to return the value of the expression

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Procedural abstraction

A

A process and 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 smaller procedures to solve each of the subproblem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

API

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly