What is an iterator java?


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

Post New Answer

More Core Java Interview Questions

What is java reflection api?

0 Answers  


What is use of inner class in java?

0 Answers  


What is string in java is it a data type?

0 Answers  


What is a generic code?

0 Answers  


primitive data types in Java ?

3 Answers  






What are the procedures?

0 Answers  


What do you understand by access specifiers in Java?

0 Answers   Genpact,


What is the difference between Integer and int?

10 Answers   Infosys,


Explain about the interpreter in java?

0 Answers  


Why convert an applet to an application?

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  


Why is the type for real numbers called double?

0 Answers  


Categories