0
Is 'String' different from 'string'?
4 Answers
+ 4
Java is case sensitive, therefore String, with a capital, is a keyword recognized and reserved for Java API. string with a lower case Is not reserved therefore may be used as a separate variable, but will not function as the correct character setting for the proper method.
+ 1
string and String are different as java is case sensitive and String is a reversed keyword for java.
0
Yes 'String' is different from 'string'
'String' is java key word and it's declare String type
string != String AS java is Case sensitive
0
In Java String is a class but not a data type that's why we write String but not "string" also java is case sensitive.