Which command line invocation will produce the output?()
A. java Test 2222 B. java Test 1234 C. java Test 4242 D. java Test 4321
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))