AWT

  Home  Computer Programming  AWT


“AWT Interview Questions and Answers will guide us now that Abstract Window Toolkit (AWT) is Javas original platform-independent windowing, graphics, and user-interface widget toolkit. The AWT is now part of the Java Foundation Classes (JFC) - the standard API for providing a graphical user interface (GUI) for a Java program. Lean AWT or get preparation for the job of AWT with the help of this Abstract Window Toolkit (AWT) Interview Questions and Answers”



41 AWT Questions And Answers

23⟩ What is the purpose of the enableEvents() method?

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.

 180 views

26⟩ What is a convertor?

Converter is an application that converts distance measurements between metric and U.S units.

 175 views

27⟩ What is the difference between AWT and SWT?

SWT (Standard Widget Toolkit) is a completely independent Graphical User Interface (GUI) toolkit from IBM. They created it for the creation of Eclipse Integrated Development Environment (IDE). AWT is from Sun Microsystems.

 178 views

28⟩ What does Realized mean?

Realized mean that the component has been painted on screen or that is ready to be painted. Realization can take place by invoking any of these methods. setVisible(true), show() or pack().

 194 views

29⟩ What is Canvas?

Canvas is a Component subclass which is used for drawing and painting. Canvas is a rectangular area where the application can draw or trap input events.

 188 views

31⟩ What are invisible components?

They are light weight components that perform no painting, but can take space in the GUI. This is mainly used for layout management.

 170 views

33⟩ What are the restrictions imposed by a Security Manager on Applets?

Applets cannot read or write files on the client machine that's executing it. They cannot load libraries or access native libraries. They cannot make network connections except to the host that it came from. They cannot start any program on the client machine. They cannot read certain system properties. Windows that an applet brings up look different than windows that an application brings up.

 188 views

35⟩ How are the elements of different layouts organized?

The elements of a FlowLayout are organized in a top to bottom, left to right fashion. The elements of a BorderLayout are organized at the borders (North, South, East and West) and the center of a container. The elements of a CardLayout are stacked, on top of the other, like a deck of cards. The elements of a GridLayout are of equal size and are laid out using the square of a grid. The elements of a GridBagLayout are organized according to a grid. However, the elements are of different size and may occupy more than one row or column of the grid. In addition, the rows and columns may have different sizes. It is the most flexible layout.

 173 views

38⟩ What are the advantages of the event-delegation model over the event-inheritance model?

Event-delegation model has two advantages over event-inheritance model. a)Event delegation model enables event handling by objects other than the ones that generate the events. This allows a clean separation between a component's design and its use. b)It performs much better in applications where many events are generated. This performance improvement is due to event-delegation model does not have to be repeatedly process unhandled events as is the case of the event-inheritance.

 178 views

39⟩ What is the JFC?

JFC stands for Java Foundation Classes. The Java Foundation Classes (JFC) are a set of Java class libraries provided as part of Java 2 Platform, Standard Edition (J2SE) to support building graphics user interface (GUI) and graphics functionality for client applications that will run on popular platforms such as Microsoft Windows, Linux, and Mac OSX.

 184 views