单项选择题
Which command line invocation will produce the output?()
A. java Test 2222
B. java Test 1234
C. java Test 4242
D. java Test 4321
点击查看答案
相关考题
-
单项选择题
Whatisthenumericalrangeofchar?()
A. 0…32767
B. 0…65535
C. –256…255
D. 32768…32767
E. Range is platform dependent. -
多项选择题
Given: Integer i = new Integer (42); Long l = new Long (42); Double d = new Double (42.0); Which two expression evaluate to true?()
A. (i = = l)
B. (i = = d)
C. (d = = l)
D. (i.equals(d))
E. (i.equals(i))
F. (i.equals(42)) -
多项选择题
Given: 1. public class ConstOver { 2. public constOver(int x, int y, int z) { 3. } 4. } Which two overload the ConstOver Constructor?()
A. ConstOver() {}
B. protected int ConstOver(){}
C. private ConstOver(int z, int y, byte x ) {}
D. public Object ConstOver(Int x, int y, int z) {}
E. pubic void ConstOver (byte x, byte y, byte z) {}
