Advanced Java Interview Questions

1. What are the two basic ways in which classes that can be run as threads may be defined?

A.A thread class may be declared as a subclass of Thread, or it may implement the Runnable interface.

2.Which containers use a border Layout as their default layout?

A.The Window, Frame and Dialog classes use a border layout as their default layout.

3.Why do threads block on I/O?

A.Threads block on I/O (that is enters the waiting state) so that other threads may execute while the I/O Operation is performed.

4.How are Observer and Observable used?

A.Objects that subclass the Observable class maintain a list of observers. When an Observable object is updated it invokes the update() method of each of its observers to notify the observers that it has changed state. The Observer interface is implemented by objects that observe Observable objects.

5.Is null a keyword?

A.The null is not a keyword.

6.What is the preferred size of a component?

A.The preferred size of a component is the minimum component size that will allow the component to display normally.

7.Which containers use a FlowLayout as their default layout?

A.The Panel and Applet classes use the FlowLayout as their default layout.

8.What state does a thread enter when it terminates its processing?

A.When a thread terminates its processing, it enters the dead state.

9.What is the Collections API?

A.The Collections API is a set of classes and interfaces that support operations on collections of objects.

10.Which characters may be used as the second character of an identifier, but not as the first character of an identifier?

A.The digits 0 through 9 may not be used as the first character of an identifier but they may be used after the first character of an identifier.

11. What is the List interface?

A.The List interface provides support for ordered collections of objects.

12.How does Java handle integer overflows and underflows?

A.It uses those low order bytes of the result that can fit into the size of the type allowed by the operation.

13.What is the Vector class?

A.The Vector class provides the capability to implement a growable array of objects

14.What modifiers may be used with an inner class that is a member of an outer class?

A.A (non-local) inner class may be declared as public, protected, private, static, final, or abstract.

15.What is an Iterator interface?

A.The Iterator interface is used to step through the elements of a Collection.

16.What is the difference between the >> and >>> operators?

A.The >> operator carries the sign bit when shifting right. The >>> zero-fills bits that have been shifted out.

17.Which method of the Component class is used to set the position and size of a component?

A.setBounds() method is used to set the position and size of a component.

18.What is the difference between yielding and sleeping?

A.When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it returns to the waiting state.

19.Which java.util classes and interfaces support event handling?

A.The EventObject class and the EventListener interface support event processing.

20.Is sizeof a keyword?

A.The sizeof operator is not a keyword.

21.What are wrapped classes?

A.Wrapped classes are classes that allow primitive types to be accessed as objects.

22.Does garbage collection guarantee that a program will not run out of memory?

A.Garbage collection does not guarantee that a program will not run out of memory. It is possible for programs to use up memory resources faster than they are garbage collected. It is also possible for programs to create objects that are not subject to garbage collection.

23.What restrictions are placed on the location of a package statement within a source code file?

A.A package statement must appear as the first line in a source code file (excluding blank lines and comments).

24.What is the immediate superclass of the Applet class?

A.Panel.

25.What is the difference between preemptive scheduling and time slicing?

A.Under preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. Under time slicing, a task executes for a predefined slice of time and then reenters the pool of ready tasks. The scheduler then determines which task should execute next, based on priority and other factors.

26.Name three Component subclasses that support painting?

A.The Canvas, Frame, Panel, and Applet classes support painting.

27.What value does readLine() return when it has reached the end of a file?

A.The readLine() method returns null when it has reached the end of a file.

28.What is the immediate superclass of the Dialog class?

A.Window.

29.What is clipping?

A.Clipping is the process of confining paint operations to a limited area or shape.

30.What is a native method?

A.A native method is a method that is implemented in a language other than Java.

31.Can a for statement loop indefinitely?

A.Yes, a for statement can loop indefinitely. For example, consider the following: for(;;) ;

32.Can an objects finalize() method be invoked while it is reachable?

A.An objects finalize() method cannot be invoked by the garbage collector while the object is still reachable. However, an objects finalize() method may be invoked by other objects.

33.What method is used to specify a containers layout?

A.The setLayout() method is used to specify a containers layout.

34.Whats new with the stop(), suspend() and resume() methods in JDK 1.2?

A.The stop(), suspend() and resume() methods have been deprecated in JDK 1.2.

35.What is synchronization and why is it important?

A.With respect to multithreading, synchronization is the capability to control the access of multiple threads to shared resources. Without synchronization, it is possible for one thread to modify a shared object while another thread is in the process of using or updating that objects value.

36.Can a lock be acquired on a class?

A.Yes, a lock can be acquired on a class. This lock is acquired on the classes Class object..

37.What are order of precedence and associativity, and how are they used?

A.Order of precedence determines the order in which operators are evaluated in expressions. Associatity determines whether an expression is evaluated left-to-right or right-to-left.

38. When a thread blocks on I/O, what state does it enter?

A.A thread enters the waiting state when it blocks on I/O.

39.To what value is a variable of the String type automatically initialized?

A.The default value of an String type is null.

40.What is the catch or declare rule for method declarations?

A.If a checked exception may be thrown within the body of a method, the method must either catch the exception or declare it in its throws clause.

41.What is the difference between a MenuItem and a CheckboxMenuItem?

A.The CheckboxMenuItem class extends the MenuItem class to support a menu item that may be checked or unchecked.

42.What is a tasks priority and how is it used in scheduling?

A.A tasks priority is an integer value that identifies the relative order in which it should be executed with respect to other tasks. The scheduler attempts to schedule higher priority tasks before lower priority tasks.

43.What class is the top of the AWT event hierarchy?

A.The java.awt.AWTEvent class is the highest-level class in the AWT event-class hierarchy.

44.When a thread is created and started, what is its initial state?

A.A thread is in the ready state after it has been created and started.

45.Can an anonymous class be declared as implementing an interface and extending a class?

A.An anonymous class may implement an interface or extend a superclass, but may not be declared to do both.

46.What is the immediate superclass of Menu?

A.MenuItem.

47.What is the purpose of finalization?

A.The purpose of finalization is to give an unreachable object the opportunity to perform any cleanup processing before the object is garbage collected.

48.Which class is the immediate superclass of the MenuComponent class?

A.Object.

49.What invokes a threads run() method?

A.After a thread is started, via its start() method or that of the Thread class, the JVM invokes the threads run() method when the thread is initially executed.

50.What is the difference between the Boolean & operator and the && operator?

A.If an expression involving the Boolean & operator is evaluated, both operands are evaluated. Then the & operator is applied to the operand. When an expression involving the && operator is evaluated, the first operand is evaluated. If the first operand returns a value of true then the second operand is evaluated. The && operator is then applied to the first and second operands. If the first operand evaluates to false, the evaluation of the second operand is skipped.

51.Name three subclasses of the Component class?

A.Box.Filler, Button, Canvas, Checkbox, Choice, Container, Label, List, Scrollbar, or TextComponent.

52.What is the GregorianCalendar class?

A.The GregorianCalendar class provides support for traditional Western calendars.

53.Which Container method is used to cause a container to be laid out and redisplayed?

A.validate() method is used to cause a container to be laid out and redisplayed.

54.What is the purpose of the Runtime class?

A.The purpose of the Runtime class is to provide access to the Java runtime system.

55.How many times may an objects finalize() method be invoked by the garbage collector?

A.An objects finalize() method may only be invoked once by the garbage collector.

56.What is the purpose of the finally clause of a try-catch-finally statement?

A.The finally clause is used to provide the capability to execute code no matter whether or not an exception is thrown or caught.

57.What is the argument type of a programs main() method?

A.A programs main() method takes an argument of the String[] type.

58.Which Java operator is right associative?

A.The = operator is right associative.

59.Can a double value be cast to a byte?

A.Yes, a double value can be cast to a byte.

60. What must a class do to implement an interface?

A.It must provide all of the methods in the interface and identify the interface in its implements clause.

61.What method is invoked to cause an object to begin executing as a separate thread?

A.The start() method of the Thread class is invoked to cause an object to begin executing as a separate thread.

62.Name two subclasses of the TextComponent class?

A.TextField and TextArea.

63.Which containers may have a MenuBar?

A.Frame.

64.How are commas used in the intialization and iteration parts of a for statement?

A.Commas are used to separate multiple statements within the initialization and iteration parts of a for statement.

65.What is the purpose of the wait(), notify(), and notifyAll() methods?

A.The wait(), notify(), and notifyAll() methods are used to provide an efficient way for threads to wait for a shared resource. When a thread executes an objects wait() method, it enters the waiting state. It only enters the ready state after another thread invokes the objects notify() or notifyAll() methods.

66.What is an abstract method?

A.An abstract method is a method whose implementation is deferred to a subclass.

67.What is the relationship between the Canvas class and the Graphics class?

A.A Canvas object provides access to a Graphics object via its paint() method.

68.What are the high-level thread states?

A.The high-level thread states are ready, running, waiting, and dead.

69.How are Java source code files named?

A.If no public class or interface is defined within a source code file, then the file must take on a name that is different than its classes and interfaces. Source code files use the .java extension.

70.What value does read() return when it has reached the end of a file?

A.The read() method returns -1 when it has reached the end of a file.

71.Can a Byte object be cast to a double value?

A.No. An object cannot be cast to a primitive value.

72.What is the difference between a static and a non-static inner class?

A.A non-static inner class may have object instances that are associated with instances of the classes outer class. A static inner class does not have any object instances.

73.What is the difference between the String and StringBuffer classes?

A.String objects are constants. StringBuffer objects are not constants.

74. If a variable is declared as private, where may the variable be accessed?

A.A private variable may only be accessed within the class in which it is declared.

75.What is an objects lock and which objects have locks?

A.An objects lock is a mechanism that is used by multiple threads to obtain synchronized access to the object. A thread may execute a synchronized method of an object only after it has acquired the objects lock. All objects and classes have locks. A classes lock is acquired on the classes Class object.

76.What is the Dictionary class?

A.The Dictionary class provides the capability to store key-value pairs.

77.How are the elements of a BorderLayout organized?

A.The elements of a BorderLayout are organized at the borders (North, South, East, and West) and the center of a container.

78.What is the % operator?

A.It is referred to as the modulo or remainder operator. It returns the remainder of dividing the first operand by the second operand.

79.Explain different way of using thread?

A.The thread could be implemented by using runnable interface or by inheriting from the Thread class. The former is more advantageous, Because when you are going for multiple inheritance.the only interface can help.

80. Difference between Swing and Awt?

A.AWT are heavy-weight componenets. Swings are light-weight components. Hence swing works faster than AWT.

81.Difference between HashMap and HashTable?

A.The HashMap class is roughly equivalent to Hashtable, except that it is unsynchronized and permits nulls. (HashMap allows null values as key and value whereas Hashtable doesnt allow). HashMap does not guarantee that the order of the map will remain constant over time. HashMap is unsynchronized and Hashtable is synchronized.

82.What is HashMap and Map?

A.Map is Interface and Hashmap is class that implements that.

83.What is final?

A.A final class cant be extended ie., final class may not be subclassed. A final method cant be overridden when its class is inherited. You cant change value of a final variable (is a constant).

84.What if the main method is declared as private?

A.The program compiles properly but at runtime it will give "Main method not public." message.

85.What if the static modifier is removed from the signature of the main method?

A.Program compiles. But at runtime throws an error "NoSuchMethodError".

86.What if I write static public void instead of public static void?

A.Program compiles and runs properly.

87.What if I do not provide the String array as the argument to the method?

A.Program compiles but throws a runtime error "NoSuchMethodError".

88.Can I have multiple main methods in the same class?

A.No the program fails to compile. The compiler says that the main method is already defined in the class.

89.Do I need to import java.lang package any time? Why ?

A.No. It is by default loaded internally by the JVM.

90.Can I import same package/class twice? Will the JVM load the package twice at runtime?

A.One can import the same package or same class multiple times. Neither compiler nor JVM complains abt it. And the JVM will internally load the class only once no matter how many times you import the same class.

91.What is the default value of an object reference declared as an instance variable?

A.null unless we define it explicitly.

92.When can an object reference be cast to an interface reference?

A.An object reference be cast to an interface reference when the object implements the referenced interface.

93.What is the difference between a Window and a Frame?

A.The Frame class extends Window to define a main application window that can have a menu bar.

94.Which class is extended by all other classes?

A.The Object class is extended by all other classes.

95.Can an object be garbage collected while it is still reachable?

A.A reachable object cannot be garbage collected. Only unreachable objects may be garbage collected.

96.Is the ternary operator written x : y ? z or x ? y : z ?

A.It is written x ? y : z.

97.What is the difference between the Font and FontMetrics classes?

A.The FontMetrics class is used to define implementation-specific properties, such as ascent and descent, of a Font object.

98.How is rounding performed under integer division?

A.The fractional part of the result is truncated. This is known as rounding toward zero.

99.What happens when a thread cannot acquire a lock on an object?

A.If a thread attempts to execute a synchronized method or synchronized statement and is unable to acquire an objects lock, it enters the waiting state until the lock becomes available.

100.What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?

A.The Reader/Writer class hierarchy is character-oriented, and the InputStream/OutputStream class hierarchy is byte-oriented.

101.What classes of exceptions may be caught by a catch clause?

A.A catch clause can catch any exception that may be assigned to the Throwable type. This includes the Error and Exception types.

102. If a class is declared without any access modifiers, where may the class be accessed?

A.A class that is declared without any access modifiers is said to have package access. This means that the class can only be accessed by other classes and interfaces that are defined within the same package.

103.What is the SimpleTimeZone class?

A.The SimpleTimeZone class provides support for a Gregorian calendar.

104.What is the Map interface?

A.The Map interface replaces the JDK 1.1 Dictionary class and is used associate keys with values.

105.Does a class inherit the constructors of its superclass?

A.A class does not inherit constructors from any of its superclasses.

106.For which statements does it make sense to use a label?

A.The only statements for which it makes sense to use a label are those statements that can enclose a break or continue statement.

107.What is the purpose of the System class?

A.The purpose of the System class is to provide access to system resources.

108.Which TextComponent method is used to set a TextComponent to the read-only state?

A.setEditable().

109.How are the elements of a CardLayout organized?

A.The elements of a CardLayout are stacked, one on top of the other, like a deck of cards.

110. Is &&= a valid Java operator?

A.No. It is not a valid java operator.

111.Name the eight primitive Java types.

A.The eight primitive types are byte, char, short, int, long, float, double, and boolean.

112.Which class should you use to obtain design information about an object?

A.The Class class is used to obtain information about an objects design.

113.What is the relationship between clipping and repainting?

A.When a window is repainted by the AWT painting thread, it sets the clipping regions to the area of the window that requires repainting.

114.Is "abc" a primitive value?

A.The String literal "abc" is not a primitive value. It is a String object.

115.What is the relationship between an event-listener interface and an event-adapter class?

A.An event-listener interface defines the methods that must be implemented by an event handler for a particular kind of event. An event adapter provides a default implementation of an event-listener interface.

116.What restrictions are placed on the values of each case of a switch statement?

A.During compilation, the values of each case of a switch statement must evaluate to a value that can be promoted to an int value.

117.What modifiers may be used with an interface declaration?

A.An interface may be declared as public or abstract.

118. Is a class a subclass of itself?

A.A class is a subclass of itself.

119.What is the highest-level event class of the event-delegation model?

A.The java.util.EventObject class is the highest-level class in the event-delegation class hierarchy.

120.What event results from the clicking of a button?

A.The ActionEvent event is generated as the result of the clicking of a button.

121.How can a GUI component handle its own events?

A.A component can handle its own events by implementing the required event-listener interface and adding itself as its own event listener.

122.How are the elements of a GridBagLayout organized?

A.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.

123.What advantage do Java layout managers provide over traditional windowing systems?

A.Java uses layout managers to lay out components in a consistent manner across all windowing platforms. Since Java layout managers arent tied to absolute sizing and positioning, they are able to accomodate platform-specific differences among windowing systems.

124.What is the Collection interface?

A.The Collection interface provides support for the implementation of a mathematical bag - an unordered collection of objects that may contain duplicates.

125.What modifiers can be used with a local inner class?

A.A local inner class may be final or abstract.

126.What is the difference between static and non-static variables?

A.A static variable is associated with the class as a whole rather than with specific instances of a class. Non-static variables take on unique values with each object instance.

127.What is the difference between the paint() and repaint() methods?

A.The paint() method supports painting via a Graphics object. The repaint() method is used to cause paint() to be invoked by the AWT painting thread.

128.What is the purpose of the File class?

A.The File class is used to create objects that provide access to the files and directories of a local file system.

129.Can an exception be rethrown?

A.Yes, an exception can be rethrown.

130.Which Math method is used to calculate the absolute value of a number?

A.The abs() method is used to calculate absolute values.

131.How does multithreading take place on a computer with a single CPU?

A.The operating systems task scheduler allocates execution time to multiple tasks. By quickly switching between executing tasks, it creates the impression that tasks exe.cute sequentially.

132.When does the compiler supply a default constructor for a class?

A.The compiler supplies a default constructor for a class if no other constructors are provided.

133.When is the finally clause of a try-catch-finally statement executed?

A.The finally clause of the try-catch-finally statement is always executed unless the thread of execution terminates or an exception occurs within the execution of the finally clause.

134.Which class is the immediate superclass of the Container class?

A.Component.

135.If a method is declared as protected, where may the method be accessed?

A.A protected method may only be accessed by classes or interfaces of the same package or by subclasses of the class in which it is declared.

136.How can the Checkbox class be used to create a radio button?

A.By associating Checkbox objects with a CheckboxGroup.

137.Which non-Unicode letter characters may be used as the first character of an identifier?

A.The non-Unicode letter characters $ and _ may appear as the first character of an identifier

138.What restrictions are placed on method overloading?

A.Two methods may not have the same name and argument list but different return types.

139.What happens when you invoke a threads interrupt method while it is sleeping or waiting?

A.When a tasks interrupt() method is executed, the task enters the ready state. The next time the task enters the running state, an InterruptedException is thrown.

140. What is casting?

A.There are two types of casting, casting between primitive numeric types and casting between object references. Casting between numeric types is used to convert larger values, such as double values, to smaller values, such as byte values. Casting between object references is used to refer to an object by a compatible class, interface, or array type reference.

141.What is the return type of a program main() method?

A.A program3 main() method has a void return type.

142.Name four Container classes?

A.Window, Frame, Dialog, FileDialog, Panel, Applet, or ScrollPane.

143.What is the difference between a Choice and a List?

A.A Choice is displayed in a compact form that requires you to pull it down to see the list of available choices. Only one item may be selected from a Choice. A List may be displayed in such a way that several List items are visible. A List supports the selection of one or more List items.

144.What class of exceptions are generated by the Java run-time system?

A.The Java runtime system generates RuntimeException and Error exceptions.

145.What class allows you to read objects directly from a stream?

A.The ObjectInputStream class supports the reading of objects from input streams.

146.What is the difference between a field variable and a local variable?

A.A field variable is a variable that is declared as a member of a class. A local variable is a variable that is declared local to a method.

147. Under what conditions is an objects finalize() method invoked by the garbage collector?

A.The garbage collector invokes an objects finalize() method when it detects that the object has become unreachable.

148.What is the relationship between a methods throws clause and the exceptions that can be thrown during the methods execution?

A.A methods throws clause must declare any checked exceptions that are not caught within the body of the method.

149.How is it possible for two String objects with identical values not to be equal under the == operator?

A.The == operator compares two objects to determine if they are the same object in memory. It is possible for two String objects to have the same value, but located indifferent areas of memory.

150.Why are the methods of the Math class static?

A.So they can be invoked as if they are a mathematical code library.

151.What Checkbox method allows you to tell if a Checkbox is checked?

A.getState().

152.What state is a thread in when it is executing?

A.An executing thread is in the running state.

153.What are the legal operands of the instanceof operator?

A.The left operand is an object reference or null value and the right operand is a class, interface, or array type.

154.How are the elements of a GridBagLayout organized?

A.The elements of a GridBagLayout are of equal size and are laid out using the squares of a grid.

155.What an I/O filter?

A.An I/O filter is an object that reads from one stream and writes to another, usually altering the data in some way as it is passed from one stream to another.

156.If an object is garbage collected, can it become reachable again?

A.Once an object is garbage collected, it ceases to exist. It can no longer become reachable again.

157.What is the Set interface?

A.The Set interface provides methods for accessing the elements of a finite mathematical set. Sets do not allow duplicate elements.

158.What classes of exceptions may be thrown by a throw statement?

A.A throw statement may throw any expression that may be assigned to the Throwable type.

159.What are E and PI?

A.E is the base of the natural logarithm and PI is mathematical value pi.

160.Are true and false keywords?

A.The values true and false are not keywords.

161.What is a void return type?

A.A void return type indicates that a method does not return a value.

162.What is the purpose of the enableEvents() method?

A.The enableEvents() method is used to enable an event for a particular object. Normally, an event is enabled when a listener is added to an object for a particular event. The enableEvents() method is used by objects that handle events by overriding their event-dispatch methods.

163.What happens when you add a double value to a String?

A.The result is a String object.

164.What is your platforms default character encoding?

A.If you are running Java on English Windows platforms, it is probably Cp1252. If you are running Java on English Solaris platforms, it is most likely 8859_1.

165.Which package is always imported by default?

A.The java.lang package is always imported by default.

166.What interface must an object implement before it can be written to a stream as an object?

A.An object must implement the Serializable or Externalizable interface before it can be written to a stream as an object.

167.How are this and super used?

A.this is used to refer to the current object instance. super is used to refer to the variables and methods of the superclass of the current object instance.

168.What is a compilation unit?

A.A compilation unit is a Java source code file.

169.What interface is extended by AWT event listeners?

A.All AWT event listeners extend the java.util.EventListener interface.

170.What restrictions are placed on method overriding?

A.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.

171.How can a dead thread be restarted?

A.A dead thread cannot be restarted.

172.What happens if an exception is not caught?

A.An uncaught exception results in the uncaughtException() method of the threads ThreadGroup being invoked, which eventually results in the termination of the program in which it is thrown.

173.What is a layout manager?

A.A layout manager is an object that is used to organize components in a container.

174.Which arithmetic operations can result in the throwing of an ArithmeticException?

A.Integer / and % can result in the throwing of an ArithmeticException.

175.Can an abstract class be final?

A.An abstract class may not be declared as final.

176.What is the ResourceBundle class?

A.The ResourceBundle class is used to store locale-specific resources that can be loaded by a program to tailor the programs appearance to the particular locale in which it is being run.

177.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?

A.The exception propagates up to the next higher level try-catch statement (if any) or results in the programs termination.

178.What is numeric promotion?

A.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.

179.What is the difference between a Scrollbar and a ScrollPane?

A.A Scrollbar is a Component, but not a Container. A ScrollPane is a Container. A ScrollPane handles its own events and performs its own scrolling.

180.What is the difference between a public and a non-public class?

A.A public class may be accessed outside of its package. A non-public class may not be accessed outside of its package.

181.To what value is a variable of the boolean type automatically initialized?

A.The default value of the boolean type is false.

182.Can try statements be nested?

A.Try statements may be tested.

183.What is the difference between the prefix and postfix forms of the ++ operator?

A.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.

184.What is the purpose of a statement block?

A.A statement block is used to organize a sequence of statements as a single statement group.

185.What is a Java package and how is it used?

A.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.

186.What modifiers may be used with a top-level class?

A.A top-level class may be public, abstract, or final.

187.What are the Object and Class classes used for?

A.The Object class is the highest-level class in the Java class hierarchy. The Class class is used to represent the classes and interfaces that are loaded by a Java program.

188.How does a try statement determine which catch clause should be used to handle an exception?

A.When an exception is thrown within the body of a try statement, the catch clauses of the try statement are examined in the order in which they appear. The first catch clause that is capable of handling the exception is executed. The remaining catch clauses are ignored.

189. When is an object subject to garbage collection?

A.An object is subject to garbage collection when it becomes unreachable to the program in which it is used.

190.What method must be implemented by all threads?

A.All tasks must implement the run() method, whether they are a subclass of Thread or implement the Runnable interface.

191.What methods are used to get and set the text label displayed by a Button object?

A.getLabel() and setLabel().

192.Which Component subclass is used for drawing and painting?

A.Canvas.



Comments