-
-
Consider the following tags and attributes of tags: CODEBASE ALT NAME CLASS JAVAC HORIZONTALSPACE VERTICALSPACE WIDTH PARAM JARWhich of the above can be used within the and tags?
A) line 1, 2, 3B) line 8, 9C) line 3, 4, 5D) line 8, 9, 10
-
How to assign different reference into an another reference.
suppose i have 4 JFrames in my project and i want to use single JDialog for all the JFrames, in such situation i have to pass the current JFrame class ie "this" keyword , the problem to receive different reference in the same class in different JFrames.
I have already tried by using Object class ,but it was not acceptedmy be through abstract classes or interfaces -
Swing Background Color
How to change default background color in Swing?
-
SetSelectionInterval and addSelectionInterval
Can somebody let me know what is the difference between setSelectionInterval and addSelectionInterval with example?
-
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
-
-
Which of the following options are correct regarding the organization of layouts (Select Multiple)
A) FlowLayout : The elements of a FlowLayout are organized in a top to bottom, left to right fashion.B) BorderLayout : The elements of a BorderLayout are organized at the borders (North, South, East and West) and the center of a container.C) CardLayout : The elements of a CardLayout are stacked, one on top of the other, like a deck of cards.D) GridBagLayout : The elements of a GridLayout are of equal...
-
An application has a frame that uses a Border layout manager. Why is it probably not a good idea to put a vertical scroll bar at North in the frame?
A) The scroll bar’s height would be its preferred height, which is not likely to be enough.B) The scroll bar’s width would be the entire width of the frame, which would be much wider than necessary.C) Both a and b.D) Neither a nor b. There is no problem with the layout as described.
-
What is the result of executing the following Java class: import java.awt.*; public class FrameTest extends Frame {public FrameTest() {add (new Button("First"));add (new Button("Second"));add (new Button("Third"));pack();setVisible(true);}public static void main(String args []) {new FrameTest();}} Select from the following options:
A) Only the "third" button is displayed.B) A runtime exception is generated (no layout manager specified).C) Only the "first" button is displayed.D) Only the "second" button is displayed.
-
Which of the following are true?
A) The event-inheritance model has replaced the event-delegation model.B) The event-inheritance model is more efficient than the event-delegation model.C) The event-delegation model uses event listeners to define the methods of event-handling classes.D) The event-delegation model uses the handleEvent( ) method to support event handling.
-
Which of the following option(s) doesn’t correctly describe the Applet’s Life Cycle methods?
A) init( ) method - Can be called when an applet is first loaded.B) start( ) method - Can be called each time an applet is started.C) paint( ) method - Can be called when the applet is minimized or refreshed.D) destroy( ) method - Can be called when the browser moves off the applet’s page.Explanation: it is the explanation for stop(), while destroy( ) method - Can be called when the browser is finished...
-
All Applets must import java.applet and java.awt.
A) TrueB) False
-
What does the following code draw?g.setColor(Color.black);g.drawLine(10, 10, 10, 50);g.setColor(Color.RED);g.drawRect(100, 100, 150, 150);
A) A red vertical line that is 40 pixels long and a red square with sides of 150 pixelsB) A black vertical line that is 40 pixels long and a red square with sides of 150 pixelsC) A black vertical line that is 50 pixels long and a red square with sides of 150 pixelsD) A red vertical line that is 50 pixels long and a red square with sides of 150 pixelsE) A black vertical line that is 40 pixels long and...
-
-
-
-
Lightweight components differ from heavy weight componants not because of one of the following reasons
A) A heavyweight component have transparent pixels which lightweight have opaque.B) A lightweight can appear to be non-rectangular while heavyweight are always rectangular.C) Mouse events on light weight componants fall through its parents while in the heavyweight it doesn’t.D) On overlapping of the lightweight component over the heavy weight component the heavy weight component is always on top.Explanation:...
Java Swing Interview Qustions
Ans