A. s += "books"; B. s = s + 100; C. int len = s.length; D. String t = s + “abc”;
A. true false B. false true C. true true D. false false
A. 123456 B. 67890 C. aaa D. bbb
A. new Random().nextInt(101) B. new Random().nextInt(100) C. new Random().nextInt(100)+1 D. (int)(Math.random()*100)