Quiz 6 stuff Flashcards

1
Q

When you invoke a method with a parameter, the value of the argument is passed to the parameter. This is referred to as _______________ .

A

pass by value

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

The client can use a method without knowing how it is implemented. The details of the implementation are encapsulated in the method and hidden from the client who invokes the method. This is known as ___________ .

A

information hiding and encapsulation

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

The signature of a method consists of _______________

A

method name and parameter list

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

___________ is to implement one method in the structure chart at a time from the top to the bottom.

A

top down approach

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

Each time a method is invoked, the system stores parameters and local variables in an area of memory, known as __________, which stores elements in last-in first-out fashion

A

a stack

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

___________ is a simple but incomplete version of a method.

A

a stub

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