-
Fill in the blanks :- The highest-level event class of the event-delegation model is _____
A) java.util.eventObject
-
What class is the top of the AWT event hierarchy?
A) java.awt.AWTEventB) java.awt.EventC) java.util.eventObjectD) javax.swing.ObjectExplanation: The java.awt.AWTEvent class is the highest-level class in the AWT event class hierarchy.
-
-
Which of the following statement(s) are true?
A) The default layout manager for an Applet is FlowLayoutB) The default layout manager for an application is FlowLayoutC) A layout manager must be assigned to an Applet before the setSize method is calledD) The FlowLayout manager attempts to honor the preferred size of any components
-
Which of the following are true about MouseListenerInterfaces? (Select Multiple)
A) The MouseListener interface defines methods for handling mouse clicks.B) The MouseMotionListener interface defines methods for handling mouse clicks.C) The MouseClickListener interface defines methods for handling mouse clicks.D) The MouseListenerInheritance interface defines methods for handling the clicking of a button.
-
Which of the following are true? (Select Multiple)
A) A component may handle its own events by adding itself as an event listener.B) A component may handle its own events by overriding its event-dispatching method.C) A component may not handle oits own events.D) A component may handle its own events only if it implements the handleEvent( ) method.
-
All Applets are subclasses of Applet.
A) TrueB) False
-
Which classes and interfaces does Applet class consist? (Select Multiple)
A) The Applet classB) AppletContext Interface.C) AppletStub InterfaceD) AudioClip Interface
-
Which Font attributes are available through the FontMetrics class? (Select Multiple)
A) ascentB) leadingC) caseD) height
-
Which of the following are true? (Select Multiple)
A) The AWT automatically causes a window to be repainted when a portion of a window has been minimized and then maximized.B) The AWT automatically causes a window to be repainted when a portion of a window has been covered and then uncovered.C) The AWT automatically causes a window to be repainted when application data is changed.D) The AWT does not support repainting operations.
-
You have created a simple Frame and overridden the paint method as follows public void paint(Graphics g){ g.drawString("Dolly",50,10);}What will be the result when you attempt to compile and run the program?
A) The string "Dolly" will be displayed at the centre of the frameB) An error at compilation complaining at the signature of the paint methodC) The lower part of the word Dolly will be seen at the top of the form, with the top hidden.D) The string "Dolly" will be shown at the bottom of the form
-
A text field has a variable-width font. It is constructed by calling new TextField("iiiii"). What happens if you change the contents of the text field to "wwwww"? (Bear in mind that is one of the narrowest characters, and w is one of the widest.)
A) The text field becomes wider.B) The text field becomes narrower.C) The text field stays the same width; to see the entire contents you will have to scroll by using the ß and à keys.D) The text field stays the same width; to see the entire contents you will have to scroll by using the text field’s horizontal scroll bar.
-
What are the immediate super classes of the following classes? (Select Multiple)
A) Container - ComponentB) MenuComponent - ObjectC) Dialog - WindowD) Applet - Panel
-
Which of the following are direct or indirect subclasses of Container? (Select Multiple)
A) FrameB) TextAreaC) MenuBarD) FileDialogE) Applet
-
-
-
-
The types of popups in swing are 1. Lightweight Popup2. Heavyweight popup3. Medium weight popup
A) 1, 2B) 2, 3C) 1, 3D) 1, 2, 3
-
What are invisible componants in swings ? (Select Multiple)
A) Componants which take space in the GUI on the client interface.B) Componants which cannot perform painting operation.C) Componants which can perform painting operation.D) The componants that are visible but no componants can be added in it.
-
Which containers use border layout as their default layout ? (Select Multiple)
A) PanelB) DialogC) FrameD) Window
Java Swing Interview Qustions
Ans