Java Interview Questions and Answers
Question - 71 : - What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
Answer - 71 : - The Reader/Writer class hierarchy is character-oriented, and the InputStream/OutputStream class hierarchy is byte-oriented.
Question - 72 : - What classes of exceptions may be caught by a catch clause?
Answer - 72 : - A catch clause can catch any exception that may be assigned to the Throwable type. This includes the Error and Exception types.
Question - 73 : - What is the difference between throw and throws keywords?
Answer - 73 : - The throw keyword denotes a statement that causes an exception to be initiated. It takes the Exception object to be thrown as argument. The exception will be caught by an immediately encompassing try-catch construction or propagated further up the calling hierarchy.
The throws keyword is a modifier of a method that designates that exceptions may come out of the method, either by virtue of the method throwing the exception itself or because it fails to catch such exceptions that a method it calls may throw.
If a class is declared without any access modifiers, where may the class be accessed?
A class that is declared without any access modifiers is said to have package or friendly access. This means that the class can only be accessed by other classes and interfaces that are defined within the same package.
Question - 74 : - What is the Map interface?
Answer - 74 : - The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with values.
Question - 75 : - Does a class inherit the constructors of its super class?
Answer - 75 : - A class does not inherit constructors from any of its superclasses.
Question - 76 : - Name primitive Java types ?
Answer - 76 : - The primitive types are byte, char, short, int, long, float, double, and Boolean.
Question - 77 : - Which class should you use to obtain design information about an object?
Answer - 77 : - The Class class is used to obtain information about an object's design.
Question - 78 : - How are the elements of a GridBagLayout organized?
Answer - 78 : - The elements of a GridBagLayout are organized according to a grid. However, the elements are of different sizes and may occupy more than one row or column of the grid. In addition, the rows and columns may have different sizes.
Question - 79 : - How can a GUI component handle its own events?
Answer - 79 : - A component can handle its own events by implementing the required event-listener interface and adding itself as its own event listener.
Question - 80 : - What advantage do Java's layout managers provide over traditional windowing systems?
Answer - 80 : - Java uses layout managers to lay out components in a consistent manner across all windowing platforms. Since Java's layout managers aren't tied to absolute sizing and positioning, they are able to accommodate platform-specific differences among windowing systems.