Define the term string pool?


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

Post New Answer

More Core Java Interview Questions

Why is it called a string?

0 Answers  


How a class can implement an interface?

5 Answers   SysArc,


What is the use of runnable interface?

0 Answers  


What is the static field modifier?

0 Answers  


How to sort an array from smallest to largest java?

0 Answers  






how to convert Java project into Maven ?

0 Answers   Infosys,


What do you mean Abstraction in java?

0 Answers   Aspire, Infogain,


Where is the singleton class used?

0 Answers   Cap Gemini,


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 is args length in java?

0 Answers  


What is the difference between size and length in java?

0 Answers  


What is the difference between the prefix and postfix forms of the ++ operator?

0 Answers  


Categories