+ 2
String
what is string and what are its properties??how to know where we use it?
2 Answers
+ 10
in java , string is basically an object which represents sequence of char values
String values are written between double quotes
example ::: String a="ritu";
System.out.print(a); //output ::: ritu
+ 1
thanku GAURAV AGARWAL