What is break and continue statement?


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

Post New Answer

More Core Java Interview Questions

What do you mean by inner class in java?

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  


Hi Friends, Can u give few interview questions which relates ArrayList and Hashmap. I mean how to link ArrayList and HashMap.I know this is not good way of asking questions like this , but i need

1 Answers   Microsoft, Wipro,


If an application has multiple classes in it, is it okay to have a main method in more than one class?

0 Answers  


Tell us something about different types of casting?

0 Answers  






What is constructor in java ?

0 Answers  


What are accessor methods in java?

0 Answers  


what is java bean?where can we use it?

12 Answers   TCS,


Why is java called java?

0 Answers  


What do you mean Abstraction in java?

0 Answers   Aspire, Infogain,


What is the difference between applet and application?

0 Answers  


What is array class in java?

0 Answers  


Categories