多项选择题
Given: 1. public interface Foo { 2. int k = 4: 3. } Which three are equivalent to line 2?()
A. final int k = 4: B. public int k = 4: C. static int k = 4: D. private int k = 4: E. abstract int k = 4: F. volatile int k = 4: G. transient int k = 4: H. protected int k = 4:
单项选择题 Which command line invocation will produce the output?()
单项选择题 Whatisthenumericalrangeofchar?()
多项选择题 Given: Integer i = new Integer (42); Long l = new Long (42); Double d = new Double (42.0); Which two expression evaluate to true?()