Set methods are commonly called ______________ because they typically change a value
mutator methods
An object’s ___________ method is called implicitly when an object appears in code where a String is needed.
toString
Get methods are commonly called _____________ or ______________ .
query methods
accessor methods
If a method contains a local variable with the same name as one of its class’s fields, the local variable ___________ the field in that method’s scope.
shadows
The ___________ method is called by the garbage collector just before it reclaims an object’s memory.
finalize
Every object can access a reference to itself with the keyword ________.
this
In an object, ____________ data is data values that is always kept in range.
consistent
String class static method _________ is similar to method System.out.printf, but returns a formatted String rather than displaying a String in a command window.
format
A(n) _______________ declaration imports one static member.
single static import
There can be only one ________________ in a Java source-code file, and it must precede all other declarations and statements in the file.