Java Flashcards
What keyword would be used to refer to the current class instance variable, in order to resolve ambiguity between instance variables & parameters?
this
Why might the this keyword be used to invoke the current class constructor?
To reuse the constructor i.e. for constructor chaining
The new operator is followed by a call to a ____, which initializes a new object.
Class constructor
The super keyword can be used to refer to a parent class instance variable if what is true?
The parent class and child class have the same fields
When should the super keyword be used to invoke a parent class method?
If the child class contains the same method as the parent class i.e if the method is being overwritten
What four things can the static keyword be applied with?
Variables, methods, blocks, nested classes
Where can the final keyword be initialized?
In the constructor
What string handling method returns a character at a specified index?
char charAt(int index)
What string handling method compares the current string to another object?
int compareTo(Object o)
What string handling method concatenates the specified string to the end of the current string?
String concat(String str)
What string handling method compares the current string to the specified object?
boolean equals(Object anObject)
What string handling method compares the current string to another string while ignoring case considerations?
boolean equalsIgnoreCase(String anotherString)
What in Java is a group of similar types of classes & interfaces?
Package
What are the three advantages of packages?
Categorizing classes & interfaces; providing access protection; removing naming collision
What are the three ways to access a package from other packages?
import package.*; import package.classname; using the fully qualified name.
If the import package.* syntax is used, then which of the following three will not be accessible? Classes, interfaces, subpackages
Subpackages
If the import package.classname syntax is used, what is the only part of the package that will be accessible?
Declared class
When is the fully qualified name of a package generally used?
Two packages have the same class name / To prevent class name collision
What is the ordering sequence of a Java program?
Package > import > class
What is a reference type in Java that is similar to class and is a collection of abstract methods?
Interface
Besides abstract methods, what 3 or 4 things may an interface also contain?
Constants, default or static methods, nested types
All the methods of an interface implemented by a class need to be defined in the class, unless what is true?
The class is abstract
Can an interface contain any number of methods?
Yes
Can you instantiate an interface?
No
What is the name of the .java file that an interface is written in?
The same as the name of the interface
Can an interface contain constructors?
No
Where does the byte code of an interface appear?
In a .class file
What is the name of the directory structure containing the bytecode file of an interface?
The same as the name of its package
What must all fields in an interface be declared as?
Static and final
Can an interface be extended by a class?
No
Can an interface extend multiple interfaces?
Yes
Are methods in an interface implicitly public?
Yes
What must a class do if it does not perform all the behaviors of an implemented interface?
Declare itself as abstract
Can a class implement more than one interface at a time?
Yes
Can a class extend more than one class?
No
What are events that occur during the execution of programs that disrupt the normal flow of instructions?
Exceptions
What is an exception in Java?
An object that wraps an occurred error event within a method
What three things does an exception contain?
Info about the error including its type; the state of the program when the error occurred; possibly other custom information
What are the three categories of exceptions?
Checked, unchecked, errors
What type of exception is one which the compiler forces you to handle explicitly?
Checked
What type of exception is generated by a method that must declare it that throws it?
Checked
What type of exceptions are errors and RuntimeExceptions?
Unchecked
What type of exception is one upon which it is assumed that the application cannot do anything to recover from it?
Unchecked
What keywords are used together by a method to catch exceptions?
try, catch
What keyword is used by a method to declare a checked exception it does not handle?
throws
What keyword is used to postpone the handling of an unchecked exception?
throws
What keyword is used to invoke an exception explicitly?
throw
What code block keyword is used to run any cleanup-type statements that the programmer wants to excecute, regardless of any exceptions occurring in the preceding try & catch blocks?
finally
What is used in Java to solve the problem of fixed size limits of arrays?
Collection framework
What three things do all collection frameworks contain?
Interfaces, implementations (classes), algorithms.
What interface extends Collection and declares the behavior of a collection that stores a sequence of events?
List
What exception will some list methods throw if the collection cannot be modified?
UnsupportedOperationException
What exception will some list methods throw when one object is incompatible with another?
ClassCastException
What part of collection framework provides dynamic arrays in Java?
ArrayList
What class does ArrayList inherit?
AbstractList
What interface is a Collection that cannot contain duplicate elements?
Set
What does the Map interface do?
Maps unique keys to values so they can be retrieved later