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)

时间:2022-09-30 07:21:55 所属题库:SCJP程序员认证考试题库

相似题目