A.null
B.-1
C.编译时出错
D.运行时报错
第1题:
下列程序的执行结果是______。 public class Test9 { public static void main(String[] args) { String s1 = new String("I am a girl"); String s2 = new String("I am a girl"); System.out.println (s1.equal (s2)); } }
A.true
B.假
C.I amgirl
D.都不正确
第2题:
下列程序段的输出是( )。 public class Test { public static void main (String args[ ]) { String ss1 = new String("hello"); String ss2 = new String("hello"); System.out.println(ssl == ss2); System.out.println (ssequals(ss2)); } }
A.true, false
B.true, true
C.false, true
D.false, false
第3题:
下列代码的输出结果是什么? public static void main(String[] args) { String a = "110"; String b = "110"; String c = new String("110"); String d = new String(a); System.out.println(a == b); System.out.println(a == c); System.out.println(c == d); }
A.true false false
B.true true true
C.true true false
D.编译错误
第4题:
执行下列程序段之后,输出的结果是( )。 public class Test{ public static void main(String[ ] args) { byte a = 2; short b = 3; long c = 4; c=a%b*4%b; System. out. println(C); } }
A.2
B.1
C.-1
D.-2
第5题:
以下程序段输出的结果是() public class test { public static void main(String[] args) { String str = "ABCDE"; str.substring(3); str.concat("XYZ"); System.out.println(str ); } }
A.DE
B.DEXYZ
C.ABCDE
D.CDEXYZ