Which of the following is the only Java package that is imported by default
A. java.awt
B. java.lang
C. java.util
D. java.io
查看答案
Which API provides a lightweight solution for GUI components
AWT
B. Abstract Window Toolkit
C. Swing
D. AWT and Swing
为了对有序表进行对分查找,则要求有序表
A. 只能顺序存储
B. 只能链式存储
C. 可以顺序存储也可以链式存储
D. 任何存储方式
已知过程对应的代码如下:Sub Proc( ) f1 = 0 f2 = 1 For n =1 to 8 f = f1 + f2 Debug.Print f f1 = f2 f2 = f Next nEnd Sub过程Proc在立即窗口中显示的结果是
A. 斐波那契序列中2到9对应的序列值
B. 斐波那契序列中2到8对应的序列值
C. 整数1到n(n<9) 对应的累加和
D. 整数1到n(n<8) 对应的累加和
What Java-related features are new to J2SE 5.0
A. Static imports
B. package and import statements
C. Autoboxing and unboxing
D. The enhanced for loop