Deck 8: Classes and Objects: a Deeper Look

Full screen (f)
exit full mode
Question
Which statement is false?

A)An enum declaration is a comma-separated list of enum constants and may optionally include other components of traditional classes,such as constructors,fields and methods.
B)Any attempt to create an object of an enum type with operator new results in a compilation error.
C)An enum constructor cannot be overloaded.
D)An enum constructor can specify any number of parameters.
Use Space or
up arrow
down arrow
to flip the card.
Question
Static class variables:

A)are final.
B)are public.
C)are private.
D)are shared by all objects of a class.
Question
Which statement is false?

A)The compiler always creates a default constructor for a class.
B)If a class's constructors all require arguments and a program attempts to call a no-argument constructor to initialize an object of the class,a compilation error occurs.
C)A constructor can be called with no arguments only if the class does not have any constructors or if the class has a public no-argument constructor.
D)None of the above.
Question
Which statement is false?

A)The actual data representation used within the class is of no concern to the class's clients.
B)Clients generally care about what the class does but not how the class does it.
C)Clients are usually involved in a class's implementation.
D)Hiding the implementation reduces the possibility that clients will become dependent on class-implementation details.
Question
Composition is sometimes referred to as a(n)________.

A)is-a relationship.
B)has-a relationship.
C)many-in-one relationship.
D)one-to-many relationship.
Question
Set methods are also commonly called ________ methods and get methods are also commonly called ________ methods.

A)query,mutator.
B)accessor,mutator.
C)mutator,accessor.
D)query,accessor.
Question
When implementing a method,use the class's set and get methods to access the class's ________ data.

A)public.
B)private.
C)protected.
D)All of the above.
Question
Having a this reference allows:

A)a method to refer explicitly to the instance variables and other methods of the object on which the method was called.
B)a method to refer implicitly to the instance variables and other methods of the object on which the method was called.
C)an object to reference itself.
D)All of the above.
Question
The _________ of a class are also called the public services or the public interface that the class provides to its clients.

A)public constructors.
B)public instance variables.
C)public methods.
D)All of the above.
Question
Which method returns an array of the enum's constants?

A)values.
B)getValues.
C)constants.
D)getConstants.
Question
Which of the following is false?

A)A static method must be used to access private static instance variables.
B)A static method has no this reference.
C)A static method can be accessed even when no objects of its class have been instantiated.
D)A static method can call instance methods directly.
Question
Enum types are implicitly ________ and enum constants are implicitly ________.

A)final,static.
B)static,static.
C)static,final.
D)final,final.
Question
What happens when this is used in a constructor's body to call another constructor of the same class if that call is not the first statement in the constructor?

A)A compilation error occurs.
B)A runtime error occurs.
C)A logic error occurs.
D)Nothing happens.The program compiles and runs.
Question
A programmer-defined constructor that has no arguments is called a(n)________.

A)empty constructor.
B)no-argument constructor.
C)default constructor.
D)null constructor.
Question
The static method ________ of class String returns a formatted String.

A)printf.
B)format.
C)formatString.
D)toFormatString.
Question
A constructor cannot:

A)be overloaded.
B)initialize variables to their defaults.
C)specify return types or return values.
D)have the same name as the class.
Question
Which of the following is false?

A)Method finalize does not take parameters and has return type void.
B)Memory leaks using Java are rare because of automatic garbage collection.
C)Objects are marked for garbage collection by method finalize.
D)The garbage collector reclaims unused memory.
Question
Which of the following statements is true?

A)Methods and instance variables can both be either public or private.
B)Information hiding is achieved by restricting access to class members via keyword public.
C)The private members of a class are directly accessible to the client of a class.
D)None of the above is true.
Question
Which of the following should usually be private?

A)Methods.
B)Constructors.
C)Variables (or fields).
D)All of the above.
Question
When should a program explicitly use the this reference?

A)Accessing a private variable.
B)Accessing a public variable.
C)Accessing a local variable.
D)Accessing a field that is shadowed by a local variable.
Question
Which syntax imports all static members of class Math?

A)static import java.lang.Math.*.
B)import static java.lang.Math.*.
C)static import java.lang.Math.
D)import static java.lang.Math.
Question
By default,the classpath consists only of the ________.However,the classpath can be modified by providing the ________ option to the javac compiler.

A)root directory of the package,-d.
B)current directory,-d.
C)root directory of the package,-classpath.
D)current directory,-classpath.
Question
When no access modifier is specified for a method or variable,the method or variable:

A)Is public.
B)Is private.
C)Has package access.
D)Is static.
Question
The import declaration import java.util.*;is known as a ________.

A)single-type-import declaration.
B)all-type-import declaration.
C)multiple-import declaration.
D)type-import-on-demand declaration.
Question
A final field should also be declared ________ if it is initialized in its declaration.

A)private.
B)public.
C)protected.
D)static.
Question
A package is:

A)A directory structure used to organize classes and interfaces.
B)A mechanism for software reuse.
C)A group of related classes and interfaces.
D)All of the above.
Question
A class within a package must be declared public if

A)It will be used only by other classes in the same package.
B)It will be used by classes that are not in the same package.
C)It is in the same directory as the other classes in the package.
D)It has a unique name.
Question
The import declaration import *;________.

A)causes a compilation error.
B)imports all classes in the library.
C)imports the default classes in the library.
D)imports the classes in package java.lang.
Question
The classpath consists of a list of directories or archive files,each separated by a ________ on Windows or a ________ on UNIX/Linux/Max OS X.

A)colon (:),semicolon (;).
B)semicolon (;),colon (:).
C)comma (,),semicolon (;).
D)semicolon (;),comma (,).
Question
Instance variables declared final do not or cannot:

A)Cause syntax errors if used as a left-hand value.
B)Be initialized.
C)Be modified.
D)None of the above.
Question
When compiling a class in a package,the javac command-line option ________ causes the javac compiler to create appropriate directories based on the class's package declaration.

A)-p.
B)-a.
C)-d.
D)-dir.
Unlock Deck
Sign up to unlock the cards in this deck!
Unlock Deck
Unlock Deck
1/31
auto play flashcards
Play
simple tutorial
Full screen (f)
exit full mode
Deck 8: Classes and Objects: a Deeper Look
1
Which statement is false?

A)An enum declaration is a comma-separated list of enum constants and may optionally include other components of traditional classes,such as constructors,fields and methods.
B)Any attempt to create an object of an enum type with operator new results in a compilation error.
C)An enum constructor cannot be overloaded.
D)An enum constructor can specify any number of parameters.
C
2
Static class variables:

A)are final.
B)are public.
C)are private.
D)are shared by all objects of a class.
D
3
Which statement is false?

A)The compiler always creates a default constructor for a class.
B)If a class's constructors all require arguments and a program attempts to call a no-argument constructor to initialize an object of the class,a compilation error occurs.
C)A constructor can be called with no arguments only if the class does not have any constructors or if the class has a public no-argument constructor.
D)None of the above.
A
4
Which statement is false?

A)The actual data representation used within the class is of no concern to the class's clients.
B)Clients generally care about what the class does but not how the class does it.
C)Clients are usually involved in a class's implementation.
D)Hiding the implementation reduces the possibility that clients will become dependent on class-implementation details.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
5
Composition is sometimes referred to as a(n)________.

A)is-a relationship.
B)has-a relationship.
C)many-in-one relationship.
D)one-to-many relationship.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
6
Set methods are also commonly called ________ methods and get methods are also commonly called ________ methods.

A)query,mutator.
B)accessor,mutator.
C)mutator,accessor.
D)query,accessor.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
7
When implementing a method,use the class's set and get methods to access the class's ________ data.

A)public.
B)private.
C)protected.
D)All of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
8
Having a this reference allows:

A)a method to refer explicitly to the instance variables and other methods of the object on which the method was called.
B)a method to refer implicitly to the instance variables and other methods of the object on which the method was called.
C)an object to reference itself.
D)All of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
9
The _________ of a class are also called the public services or the public interface that the class provides to its clients.

A)public constructors.
B)public instance variables.
C)public methods.
D)All of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
10
Which method returns an array of the enum's constants?

A)values.
B)getValues.
C)constants.
D)getConstants.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
11
Which of the following is false?

A)A static method must be used to access private static instance variables.
B)A static method has no this reference.
C)A static method can be accessed even when no objects of its class have been instantiated.
D)A static method can call instance methods directly.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
12
Enum types are implicitly ________ and enum constants are implicitly ________.

A)final,static.
B)static,static.
C)static,final.
D)final,final.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
13
What happens when this is used in a constructor's body to call another constructor of the same class if that call is not the first statement in the constructor?

A)A compilation error occurs.
B)A runtime error occurs.
C)A logic error occurs.
D)Nothing happens.The program compiles and runs.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
14
A programmer-defined constructor that has no arguments is called a(n)________.

A)empty constructor.
B)no-argument constructor.
C)default constructor.
D)null constructor.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
15
The static method ________ of class String returns a formatted String.

A)printf.
B)format.
C)formatString.
D)toFormatString.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
16
A constructor cannot:

A)be overloaded.
B)initialize variables to their defaults.
C)specify return types or return values.
D)have the same name as the class.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
17
Which of the following is false?

A)Method finalize does not take parameters and has return type void.
B)Memory leaks using Java are rare because of automatic garbage collection.
C)Objects are marked for garbage collection by method finalize.
D)The garbage collector reclaims unused memory.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
18
Which of the following statements is true?

A)Methods and instance variables can both be either public or private.
B)Information hiding is achieved by restricting access to class members via keyword public.
C)The private members of a class are directly accessible to the client of a class.
D)None of the above is true.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
19
Which of the following should usually be private?

A)Methods.
B)Constructors.
C)Variables (or fields).
D)All of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
20
When should a program explicitly use the this reference?

A)Accessing a private variable.
B)Accessing a public variable.
C)Accessing a local variable.
D)Accessing a field that is shadowed by a local variable.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
21
Which syntax imports all static members of class Math?

A)static import java.lang.Math.*.
B)import static java.lang.Math.*.
C)static import java.lang.Math.
D)import static java.lang.Math.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
22
By default,the classpath consists only of the ________.However,the classpath can be modified by providing the ________ option to the javac compiler.

A)root directory of the package,-d.
B)current directory,-d.
C)root directory of the package,-classpath.
D)current directory,-classpath.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
23
When no access modifier is specified for a method or variable,the method or variable:

A)Is public.
B)Is private.
C)Has package access.
D)Is static.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
24
The import declaration import java.util.*;is known as a ________.

A)single-type-import declaration.
B)all-type-import declaration.
C)multiple-import declaration.
D)type-import-on-demand declaration.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
25
A final field should also be declared ________ if it is initialized in its declaration.

A)private.
B)public.
C)protected.
D)static.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
26
A package is:

A)A directory structure used to organize classes and interfaces.
B)A mechanism for software reuse.
C)A group of related classes and interfaces.
D)All of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
27
A class within a package must be declared public if

A)It will be used only by other classes in the same package.
B)It will be used by classes that are not in the same package.
C)It is in the same directory as the other classes in the package.
D)It has a unique name.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
28
The import declaration import *;________.

A)causes a compilation error.
B)imports all classes in the library.
C)imports the default classes in the library.
D)imports the classes in package java.lang.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
29
The classpath consists of a list of directories or archive files,each separated by a ________ on Windows or a ________ on UNIX/Linux/Max OS X.

A)colon (:),semicolon (;).
B)semicolon (;),colon (:).
C)comma (,),semicolon (;).
D)semicolon (;),comma (,).
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
30
Instance variables declared final do not or cannot:

A)Cause syntax errors if used as a left-hand value.
B)Be initialized.
C)Be modified.
D)None of the above.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
31
When compiling a class in a package,the javac command-line option ________ causes the javac compiler to create appropriate directories based on the class's package declaration.

A)-p.
B)-a.
C)-d.
D)-dir.
Unlock Deck
Unlock for access to all 31 flashcards in this deck.
Unlock Deck
k this deck
locked card icon
Unlock Deck
Unlock for access to all 31 flashcards in this deck.