What is palindrome in java?


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

Post New Answer

More Core Java Interview Questions

Explain creating threads by implementing runnable class?

0 Answers  


What is the difference between applet and application?

0 Answers  


Why strings in java are called as immutable?

0 Answers  


How do you find the independent variable?

0 Answers  


Is it safe for adding 10,00,000 records/objects to HashMap?, i.e is it safe to add millions of objects to HashMap?

2 Answers  


What is OOPs & Why?

3 Answers  


what is the difference between HashMap and Hashtable

17 Answers   Value Labs, Virtusa,


Why set do not allow duplicates in java?

0 Answers  


we have syntax like for(int var : arrayName) this syntax is to find whether a number is in the array or not.but i want to know how to find that number's location.

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 is a type parameter in java?

0 Answers  


Can you explain the usages of class.forname()?

0 Answers  


Categories