What is special about string objects as compared to objects of other derived types?
Answer options
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
Quick AnswerThe correct answer is 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 + because it directly addresses the core logic of Java Programming.
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 +.