What methodology can be employed to locate substrings inside a string?


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

Post New Answer

More Core Java Interview Questions

Explain heap sort?

0 Answers   Flextronics,


Difference between throw and throws?

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 consumer interface?

0 Answers  


what are the high-level thread states? : Java thread

0 Answers  






How do you initialize an arraylist in java?

0 Answers  


3) Suppose you are a very rich person, having 50 rooms and you have lost the key for one of the room's. How effectively you can find this key? (Qs2 and Qs3 are related)

3 Answers   RBS,


What is multi level inheritance in java?

0 Answers  


why java does not support mulitple inheritance directly?

3 Answers   TCS,


Can we use string in switch case in java?

0 Answers  


What is a double?

0 Answers  


does java support default argument in Method?

1 Answers  


Categories