-
-
-
-
-
-
-
-
-
-
-
-
-
What's new with the stop(), suspend() and resume() methods in JDK 1.2
The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.
-
Which characters may be used as the second character of an identifier,but not as the first character of an identifier
The digits 0 through 9 may not be used as the first character of an identifier but they maybe used after the first character of an identifier.
-
Which java.util classes and interfaces support event handling
The EventObject class and the EventListener interface support event processing.
-
-
-
What are order of precedence and associativity, and how are they used
Order of precedence determines the order in which operators are evaluated inexpressions. Associatity determines whether an expression is evaluated left-to-right orright-to-left
-
What is the catch or declare rule for method declarations
If a checked exception may be thrown within the body of a method, the method musteither catch the exception or declare it in its throws clause.
-
What is the difference between a MenuItem and a CheckboxMenuItem
The CheckboxMenuItem class extends the MenuItem class to support a menu item thatmay be checked or unchecked.
Java Interview Questions
Ans