Questions And Answers | With 100% Correct Answers / graded A+
Guaranteed Success!!
Polymorphism - ANSWER-Having many forms, such as
when a child class
overrides its parent class's
methods
Static methods - ANSWER-Contain word "static" in the
definition, are called
without a receiver. Require implementations if declared
in an interface.
Instance methods - ANSWER-Don't contain the word "static"
in the definition,
are called with a
receiver
Test case - ANSWER-The individual test for a method
, Precondition - ANSWER-characterizes the responsibility
of the program
that calls the method (the
client)
Post-condition - ANSWER-characterizes the responsibility of
the program that
implements the method (the
implementer)
Parameter Mode - ANSWER-Part of the contract that
specifies the way a
method might change the value of the
corresponding argument.
Clears - ANSWER-A parameter mode. Upon returning from a
method call, a
clears-mode parameter has the initial value
for its type.
Restores - ANSWER-The default parameter mode. Upon
returning from a method call, a restores-mode parameter has
the value it had when it was passed into the method.