Which expressions will evaluate to true if preceded by the following code?()
String a = "hello";
String b = new String(a);
String c = a;
char[] d = { ’h’, ’e’, ’l’, ’l’, ’o’ };
A.(a == "Hello")
B.(a == b)
C.(a == c)
D.a.equals(b)
E.a.equals(d)