Java Classes and Objects UPDATED ACTUAL Exam Questions and
CORRECT Answers
overloading - When two methods or constructors have the same name but different parameters
no-arg - This type of constructor accepts no arguments
private - Class members with this access specifier can only be referred to within their own class
public - Class members with this access specifier can be referred to from anywhere
class discovery - The process of determining what classes a program requires
class members - Fields and methods that belong to a class
null - The value of an uninitialized reference variable
package - A group of related classes
explicit - A type of import that identifies the package location of a single class
wildcard - Tells the compiler to import all of the classes in a package
driver - A class that creates data objects and performs the program's input and output
getter - Another name for accessor
CORRECT Answers
overloading - When two methods or constructors have the same name but different parameters
no-arg - This type of constructor accepts no arguments
private - Class members with this access specifier can only be referred to within their own class
public - Class members with this access specifier can be referred to from anywhere
class discovery - The process of determining what classes a program requires
class members - Fields and methods that belong to a class
null - The value of an uninitialized reference variable
package - A group of related classes
explicit - A type of import that identifies the package location of a single class
wildcard - Tells the compiler to import all of the classes in a package
driver - A class that creates data objects and performs the program's input and output
getter - Another name for accessor