Top Swing Interview Questions :: ALLInterview.com http://www.allinterview.com Top Swing Interview Questions en-us What is the difference between AWT & Swing? http://www.allinterview.com/showanswers/27904.html AWT are heavy weight components while Swing are light weight components. what is the diff's between swing and applet? http://www.allinterview.com/showanswers/29204.html Swing is a light weight component whereas Applet is a heavy weight Component..Applet Does not require main method ,instead it needs init method. what are the root classes of all classes? http://www.allinterview.com/showanswers/11536.html API(applicaton programming interface) What is the use of JTree? http://www.allinterview.com/showanswers/2380.html JTree is one of component which is used to display the items in tree view. What is the base class for all of swing components? http://www.allinterview.com/showanswers/2375.html All swing components are derived from abstract javax.swing.Jcomponet class Explain the differences between an applet and a Japplet? http://www.allinterview.com/showanswers/2378.html Components are basically of two types AWT(abstract window tool) components and swing components. The swing components provide better look and feel and they are light weight components compared to awt components. Swing components are derived f Default layout for a ContentPane in JFC? http://www.allinterview.com/showanswers/2377.html Border Layout What is JTable and what is its purpose? http://www.allinterview.com/showanswers/2379.html JTable is a Swing Componenet which is used to show the datas in table format. It contains many custom models What does x mean in javax.swing? http://www.allinterview.com/showanswers/2370.html Extension of Java What is meant by Swing? http://www.allinterview.com/showanswers/2373.html Swing is a library of GUI controls which improves upon the Abstract Window Toolkit. AWT uses operating system calls to draw components; Swing draws components using its own methods. This gives developers much greater flexibility in desig What is meant by JFC? http://www.allinterview.com/showanswers/2372.html Java Foundation Classes (JFC). The JFC also include other features important to a GUI program, such as the ability to add rich graphics functionality, and the ability to create a program that can work in different languages and by users with What is the corresponding Layout for Card in Swing? http://www.allinterview.com/showanswers/2376.html CardLayout What is the default look and feel of a Swing Component? http://www.allinterview.com/showanswers/2371.html JavaLookAndFeel Name the borders provided by Swing? http://www.allinterview.com/showanswers/2368.html BevelBorder A 3D border with a raised or lowered appearance. CompoundBorder A combination of two borders: an inside border and an outside border. EmptyBorder A transparent border used to define empt What are tab pans? http://www.allinterview.com/showanswers/2374.html Tab Panes provide the ability to switch betwen various panels. various panels can be added to a top level container using tabbed panes.