Which of the following expressions will evaluate to true if preceded by the following code?
String a = "java"; char[] b = {'j', 'a','v', 'a' }; String c = new String (b); String d = a;
Select 3 options
Correct Options are : A C D
For Option B.
b and d can not even be compared because they are of different types.
For Option D.
Note that a == c will be false because doing 'new' creates an entirely new object.