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 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 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 difference between checked and unchecked exception plz expla http://www.allinterview.com/showanswers/61243.html CHECKED EXCEPTION IS TO BE HANDLED BY USE TRY AND CATCH EXCEPTION....THAT HAS TO BE THROWN AND CATCH USEING THIS EXCEPTION...WERE AS UNCHECKED EXCEPTION IS RUN TIME EXCEPTION. THIS EXCEPTION IS NOT CHECKED AT THE TIME OF COMPILATION HENCE IT CA 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 how can u handle runtime exceptions in java plz explain with example http://www.allinterview.com/showanswers/61244.html You can catch runtime exceptions in try catch block but generally runtime exceptions are unchecked exceptions and are not in control of a candidate to handle Default layout for a ContentPane in JFC? http://www.allinterview.com/showanswers/2377.html Border Layout 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 how to give transparency to JComboBox,JList and JTable http://www.allinterview.com/showanswers/61550.html by setOpaque(false) What is the corresponding Layout for Card in Swing? http://www.allinterview.com/showanswers/2376.html CardLayout