whats string ?
Answers were Sorted based on User's Feedback
Answer / venkatachalapathy
string is a immutable object i.e once the object is created
it cannot be modified. if we try to modify it creates
another new object
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / nikunj b patel
string is class.it is collections of character.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / jayapala.pm
String is a collection of characters.
- In JAVA String is a wrapper class,String object can hold
the collection of characters.
- wrapper class is wrap the primitive value with in the
constructor is called wrapper classes.
- Strings are immutable in JAVA(we can't modify the string
object after initialize the value to object)
- String str = "greatJP"; we can assign value directly.This
option only for String class.
- Normally we will declare String str = new
String("GreatJP");
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / venkat
String is one of the datatype that is user to assign the
character to the variables,and we can give as an input in
the runtime.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / srinu
String is collection of characters are enclosed with double
quation.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / stranger_ajnabi53@yahoo.c
string is an array of character.
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / vijeet
String is a class or String is a method, String is a
primitive type...
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / manoj
String is object which can store multiple variable
| Is This Answer Correct ? | 2 Yes | 6 No |
What is the order of method invocation in an Applet?
What is method reference?
Can static methods access instance variables in java?
Explain abstract class in java?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
Explain serialization and deserialization in java?
How do you convert int to char in java?
JVM is platform independent or depeneded?
Differentiate between stringbuffer and stringbuilder in java.
How many return statement are allowed in a function?
What are recursive functions?
What is difference between static class and singleton pattern?