The following package is automatically imported into all Java programs.
A. 的哪个包被自动导入到所有Java程序中。
B. java.java
C. java.default
D. java.util
E. java.lang
查看答案
Look at the following statement.看看下面的句子import java.util.*;This is an example of: 这是一个的例子
A. a wildcard import 通配符导入
B. an explicit import 显式导入
C. unconditional import 无条件导入
D. conditional import 有条件导入
Any method that calls a method with a throws clause in its header must 任何在其头中调用带有抛出子函数的方法都必须
A. handle the potential exception 处理潜在的异常
B. have the same throws clause 有相同的抛出条款
C. Both of the above 以上两项都是
D. do nothing, the called program will take care of the throws clause 什么也不做,被调用的程序将处理子函数抛出的异常
The process of breaking a problem down into smaller pieces is sometimes called将问题分解成更小的部分的过程有时被称为
A. divide and conquer 分而治之
B. scientific method 科学方法
C. top-down programming 自上而下的编程
D. whole-into-part 从整体到部分
To document the return value of a method, use this in a documentation comment. 要记录方法的返回值,需要在文档注释中使用 。
A. The @param tag
B. The @comment tag
C. The @return tag
D. The @returnValue tag