-
-
The layout of a container can be altered by using which of the following methods :-
A) setLayout(aLayoutManager)B) layout(aLayoutManager)C) addLayout(aLayoutManager)D) setLayoutManager(aLayoutManager)
-
When two or more objects are added as listeners for the same event, which listener is first invoked to handle the event?
A) The first object that was added as listener.B) The last object that was added as listener.C) There is no way to determine which listener will be invoked first.D) It is impossible to have more than one listener for a given event.
-
-
-
Which of the following classes have a paint( ) method? (Select Multiple)
A) CanvasB) ImageC) FrameD) Graphics
-
Which layout should you use to organize the components of a container in a tabular form?
A) CardLayoutB) BorederLayoutC) FlowLayoutD) GridLayout
-
All swing components are light weight componants except for (Select Multiple)
A) JWindow, JFrameB) JDialogC) JAppletD) JPanel
-
Which of the following methods are invoked by the AWT to support paint and repaint operations?
A) paint( )B) repaint( )C) draw( )D) redraw( )
-
Which of the following may contain a menu bar?
A) A panelB) A frameC) An appletD) A menu bar
-
Which TextComponent method is used to set a TextComponent to the read-only state ?
A) setReadOnly()B) setEditOnly()C) setEditable()D) setTextReadOnly()
-
Which of the following layout managers honours the preferred size of a component:
A) CardLayoutB) FlowLayoutC) BorderLayoutD) GridLayout
-
Which of the following components allow multiple selections? (Select Multiple)
A) Non-exclusive Checkboxes.B) Radio buttons.C) Choice.D) List.
-
Which method will cause a Frame to be displayed?
A) show( )B) setVisible( )C) display( )D) displayFrame( )
-
The command ‘codebase’ is used in applets when
A) When the applet class file is not in the same directoryB) When the applet class file is in the same directoryC) When we need to get the parameters of the appletD) None of the above
-
What is the difference between scrollbar and scrollpane(Select Multiple)
A) Scrollbar is a component while scrollpane is a containerB) Scrollbar handles its own events while scrollpane does notC) Scrollpane handles its own events and performs its own scrolling.D) All of the above.
-
Which of the following are passed as an argument to the paint( ) method?
A) A Canvas objectB) A Graphics objectC) An Image objectD) A paint object
-
How would you set the color of a graphics context called g to cyan?
A) g.setColor(Color.cyan);B) g.setCurrentColor(cyan);C) g.setColor("Color.cyan");D) g.setColor("cyan’);E) g.setColor(new Color(cyan));
-
-
Fill in the blank :- the default look and feel of a swing component is _____________
A) Java Look and Feel
Java Swing Interview Qustions
Ans