Fill in the blanks in each of the following statements:
a) A(n)_________ imports all static members of a class.
b) 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.
c) 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.
d) The public methods of a class are also known as the class's__________ or____________ .
e) A(n)____________ declaration specifies one class to import.
f) If a class declares constructors, the compiler will not create a(n)__________ .
g) An object's_____________ method is called implicitly when an object appears in code where a String is needed.
h) Get methods are commonly called__________ or____________ .
i) A(n)__________ method tests whether a condition is true or false.
j) For every enum, the compiler generates a static method called_________ that returns an array of the enum's constants in the
order in which they were declared.
k) Composition is sometimes referred to as a(n)___________ relationship.
l) A(n)_________ declaration contains a comma-separated list of constants.
m) A(n)___________ variable represents classwide information that's shared by all the objects of the class.
n) A(n)_________ declaration imports one static member.
o) The___________ states that code should be granted only the amount of privilege and access that it needs to accomplish its designated task.
p) Keyword____________specifies that a variable is not modifiable after initialiation in a declaration or constructor.
q) A(n)___________ declaration imports only the classes that the program uses from a particular package.
r) Set methods are commonly called___________ because they typically change a value.
s) Use class____________ to perform precise monetary calculations.
t) Use the___________ statement to indicate that a problem has occurred.