AWT Interview Questions



1. What is meant by Controls and what are different types of controls?

à Controls are componenets that allow a user to interact with your application.

The AWT supports the following types of controls:

* Labels

* Push buttons

* Check boxes

* Choice lists

* Lists

* Scroll bars

* Text components

These controls are subclasses of Component.

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

à setBounds().

The following code snippet explains this:

txtName.setBounds(x,y,width,height);

places upper left corner of the text field txtName at point (x,y) with the width and

height of the text field set as width and height.

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

à setEditable()

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

à By associating Checkbox objects with a CheckboxGroup.

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

à getLabel( ) and setLabel( )

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

à Choice: 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.

List: 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.

7. What is the difference between a Scollbar and a Scrollpane?

à A Scrollbar is a Component, but not a Container. A Scrollpane is a Container and

handles its own events and performs its own scrolling.

8. Which are true about the Container class?

à * The validate( ) method is used to cause a Container to be laid out and

redisplayed.

* The add( ) method is used to add a Component to a Container.

* The getBorder( ) method returns information about a Container’s insets.

* getComponent( ) method is used to access a Component that is contained in a

Container.

Answers: a, b and d

9. Suppose a Panel is added to a Frame and a Button is added to the Panel.If the Frame’s font is set to 12-point TimesRoman, the Panel’s font is set to 10-point TimesRoman, and the Button’s font is not set, what font will be used to display the Button’s label?

à* 12-point TimesRoman

* 11-point TimesRoman

* 10-point TimesRoman

* 9-point TimesRoman

Answer: c.

10. What are the subclasses of the Container class?

à The Container class has three major subclasses. They are:

* Window

* Panel

* ScrollPane

11. Which object is needed to group Checkboxes to make them exclusive?

àCheckboxGroup.

12. What are the types of Checkboxes and what is the difference between them?

àJava supports two types of Checkboxes:

* Exclusive

* Non-exclusive.

In case of exclusive Checkboxes, only one among a group of items can be selected

at a time. I f an item from the group is selected, the checkbox currently checked is

deselected and the new selection is highlighted. The exclusive Checkboxes are also

called as Radio buttons. The non-exclusive checkboxes are not grouped together

and each one can be selected independent of the other.

13. What is a Layout Manager?

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

14. what are the different Layout Managers available in java.awt and what is the default Layout manager for the panel and the panel subclasses?

à The different layouts available in java.awt are:

* FlowLayout: The elements of a FlowLayout are organized in a top to bottom, left

to right fashion.

* BorderLayout: The elements of a BorderLayout are organized at the borders

(North, South, East and West) and the center of a container.

* CardLayout: The elements of a CardLayout are stacked, one on top of the other,

like a deck of cards.

* GridLayout: The elements of a GridLayout are of equal size and are laid out

using the square of a grid.

* GridBagLayout: 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.

The default Layout Manager of Panel and Panel sub classes is FlowLayout.

15. Can I add the same component to more than one container?

àNo. Adding a component to a container automatically removes it from any previous

parent (container).

16. How can we create a borderless window?

àCreate an instance of the Window class, give it a size, and show it on the screen.

Frame aFrame = new Frame();

Window aWindow = new Window(aFrame);

aWindow.setLayout(new FlowLayout());

aWindow.add(new Button(“Press Me”));

aWindow.getBounds(50,50,200,200);

aWindow.show();

17. Can I create a non-resizable windows? If so, how?

àYes. By using setResizable() method in class Frame.

18. Which containers use a BorderLayout as their default layout? Which containers use a FlowLayout as their default layout?

àThe Window, Frame and Dialog classes use a BorderLayout as their default layout.

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

19. How do you change the current layout manager for a container?

àa. Use the setLayout method

b.Once created you cannot change the current layout manager of a component

c.Use the setLayoutManager method

d.Use the updateLayout method

Answer: a.

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

à The CheckboxMenuItem class extends the MenuItem class to support a menu item

that may be checked or unchecked.

Share with SociBook.com

Random Posts

  1. 7 Comment(s)

  2. By kumar on Nov 24, 2008 | Reply

    Can I create a non-resizable windows in applet?
    if yes how?

  3. By click on Mar 12, 2009 | Reply

    Hi My wife and I would like to thank you all for this web site. Hours of pleasure and all

    Thanks a lot

  4. By guide on Mar 31, 2009 | Reply

    Perfect site :-) I will recommend it to all my friends and fans

  5. By visit now on Apr 1, 2009 | Reply

    I’d just like to thank you for taking the time to create this internet website. It has been extremely helpful

  6. By click here on Apr 3, 2009 | Reply

    Could you please send to me the contacts of developer of your site? It looks so damn good!

  7. By brandy casino on Apr 17, 2009 | Reply

    I happened upon this site while following the links from another site. Your site is wonderful and i bookmarked it. Thank your for the hard work you must have put in to create this wonderful facility. Keep up the excellent work

  8. By Ramakrishna on Aug 15, 2009 | Reply

    Thanks for your support

Post a Comment