ORGANIZED QUESTIONS &
100% CORRECT EXPERT
VERIFIED ANSWERS GRADED
A+ (ORIGINAL COPY)
kernel (primary) methods - THE CORRECT ANSWER-primary methods
that are deemed being special enough to go into their own
interface
secondary methods - THE CORRECT ANSWER-methods that are more
"powerful" than kernel methods, introduced to make a
component readily usable in client code
constructor - THE CORRECT ANSWER-a method that creates an
instance of a class
no-argument constructor - THE CORRECT ANSWER-default
constructor, takes no arguments
copy constructor - THE CORRECT ANSWER-returns a copy of the
parameter value
, instance method - THE CORRECT ANSWER-methods that are called by
a specific object
distinguished formal parameter - THE CORRECT ANSWER-this
receiver - THE CORRECT ANSWER-object an instance method is called
on
parameter mode - THE CORRECT ANSWER-the effect the parameter
will have on the object
mutable - THE CORRECT ANSWER-object can be modified
#<variable_name> - THE CORRECT ANSWER-# represents the old
(incoming) variable value
updates parameter mode - THE CORRECT ANSWER-signifies that the
parameter may change the object
does not ensures parameter restoration
clear parameter mode - THE CORRECT ANSWER-signifies that the
object's value will be reset to its initial value
primitive types - THE CORRECT ANSWER-built-in types, such as
boolean, char, int, double