Answer Posted / sonam
Exception is just like a condition which is caused by run
time in program.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is ‘has a’’ relationship in java?
List out benefits of object oriented programming language?
Is null == null in java?
What are unchecked exceptions in java?
What super () does in java?
What is the purpose of abstract class?
What is printwriter in java?
What does those terms actually mean included in the j.d.k i.6?
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.
What is oop principle in java?
Which is better singleton or static class?
Give few difference between constructor and method?
Is namespace same as package in java?
Can you explain the meaning of aggregation and composition
What is numel matlab?