what is mean by String and StringBuffer?
What is mean by Methooverriding and Overloading?

Answers were Sorted based on User's Feedback



what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading? ..

Answer / ravi

String is a final class which represents a character
string,string are constant they value cannot be changed
after they r created
its is final class Stringbuffer,Stringbuffer implemets
muttable String character,its is like a string but can be
modified, the length and content can be changed during
method call

Is This Answer Correct ?    7 Yes 0 No

what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading? ..

Answer / r maria ruban raj

What Ravi said is correct in string and string buffer.
method overriding is same method available in both base or
super class and in drived class. At that time we say this
is over riding. method over loading is same method with
different signurate and different parameter.

Method over riding ===base class and drived class
Method overloading === same class

Is This Answer Correct ?    5 Yes 1 No

what is mean by String and StringBuffer? What is mean by Methooverriding and Overloading? ..

Answer / raja papaiah. m

When you create a string object, you are creating a string
that cannot be changed. this once a string object has been
created, you cannot change the character that comprise that
string. at first that may seem to be a serious restriction.
However, such is not the case. You can still perform all
types of string operations. The difference is that each time
you need an altered version of existing string,a new string
object is create that contains the modifications. The
original string is left unchanged. this approach is used
because fixed, immutable strings can be implemented more
efficiently than changeable ones. For those cases in which a
modification string is desired, Java provides two options:
StringBuffer and StringBuilder Both hold strings that can be
modified after they are created

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More Core Java Interview Questions

What is Applet Stub Interface ?

0 Answers  


How will you calculate the depth of a binary tree if the tree contains 15 nodes?

0 Answers   Aricent,


Difference between canvas class & graphics class?

1 Answers  


what is the default value of a variable char?(If not assigned)

4 Answers  


What is object-oriented paradigm?

0 Answers  






how can you take care of mutual exclusion using java threads? : Java thread

0 Answers  


I declared main() method as private. But it still running and displaying the output. Please Answer it . Code Snippet as Below: import java.io.*; class over { private static void main(String[] args) { int high = Integer.MAX_VALUE; int overflow = high + 1; int low = Integer.MIN_VALUE; int underflow = low - 1; System.out.println(high + "\n" +overflow +"\n"+ low +"\n"+underflow); //System.out.println(overflow); //System.out.println(low); //System.out.println(underflow); } }

4 Answers   Cap Gemini,


Why to give the file name same as the public class name in java?

3 Answers  


Which is the best approach for creating thread ?

0 Answers  


Is it possible to write static method in abstract class? justyfy your answer?

5 Answers   Hexaware,


Why synchronization is important in java?

0 Answers  


How to sort array of 0 and 1 in java?

0 Answers  


Categories