What will happen to the exception object after exception handling?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Differentiate between overriding and overloading cases?

0 Answers   Amdocs,


What are the supported platforms by java programming language?

0 Answers  


Can I use % with real numbers?

0 Answers  


When the constructor of a class is invoked?

0 Answers  


Is zero a natural number?

0 Answers  






Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.

0 Answers  


What are the wrapped, classes?

0 Answers  


Explain about Superclass and Subclass?

6 Answers  


Explain about oops concepts.

0 Answers   Aditi Placement Service,


What is boolean keyword in java?

0 Answers  


Why is serialization required?

0 Answers  


How will you reverse a link list without using recursion?

0 Answers   Global Logic,


Categories