What is special about string objects as compared to objects of other derived types?
Answer options
A
You can create string objects without or without using new operator
B
Java provides string constant pool to store the string objects
C
You can concatenate two string objects using +
Correct answer: You can create string objects without or without using new operator, Java provides string constant pool to store the string objects, You can concatenate two string objects using +
Explanation
Correct answer: You can create string objects without or without using new operator; Java provides string constant pool to store the string objects; You can concatenate two string objects using +.