CORE JAVA FREQUENTLY ASKED QUESTIONS AND ANSWERS-1
Question: What is a compilation unit?Answer: A compilation unit is a Java source code file.
Question: What restrictions are placed on method overriding?
Answer:: Overridden methods must have the same name, argument list, and return type.
The overriding method may not limit the access of the method it overrides.
The overriding method may not throw any exceptions that may not be thrown by the overridden method.
Question: How can a dead thread be restarted?
Answer: A dead thread cannot be restarted.
Question: What happens if an exception is not caught?
Answer: An uncaught exception results in the uncaughtException() method of the thread's ThreadGroup being invoked, which eventually results in the termination of the program in which it is thrown.
Question: Which arithmetic operations can result in the throwing of an ArithmeticException?
Answer: Integer / and % can result in the throwing of an ArithmeticException
Question: Can an abstract class be final?
Answer: An abstract class may not be declared as final
Question: What happens if a try-catch-finally statement does not have a catch clause to handle an exception that is thrown within the body of the try statement?
Answer: The exception propagates up to the next higher level try-catch statement (if any) or results in the program's termination
Question: What is numeric promotion?
Answer: Numeric promotion is the conversion of a smaller numeric type to a larger numeric type, so that integer and floating-point operations may take place. In numerical promotion, byte, char, and short values are converted to int values. The int values are also converted to long values, if necessary. The long and float values are converted to double values, as required
Question: What is the difference between a public and a non-public class?
Answer: A public class may be accessed outside of its package. A non-public class may not be accessed outside of its package.
Question: To what value is a variable of the boolean type automatically initialized?
Answer: The default value of the boolean type is false
Question: Can try statements be nested?
Answer: Yes
Question: What is the difference between the prefix and postfix forms of the ++ operator?
Answer: The prefix form performs the increment operation and returns the value of the increment operation. The postfix form returns the current value all of the expression and then performs the increment operation on that value.
Question: What is the purpose of a statement block?
Answer: A statement block is used to organize a sequence of statements as a single statement group
Question: What is a Java package and how is it used?
Answer: A Java package is a naming context for classes and interfaces. A package is used to create a separate name space for groups of classes and interfaces. Packages are also used to organize related classes and interfaces into a single API unit and to control accessibility to these classes and interfaces.
Question: What modifiers may be used with a top-level class?
Answer: A top-level class may be public, abstract, or final.