14[单选题]给出下列的代码,哪行在编译时可能会有错误?
① public void modify(){
② int i, j, k;
③ i = 100;
④ while ( i > 0 ){
⑤ j = i * 2;
⑥ System.out.println (" The value of j is " + j );
⑦ k = k + 1;
⑧ }
⑨ }
A.line 4 B.line 6 C.line 7 D.line 8
参考答案:C
15[单选题]
参考答案:B
16[单选题]下列代码的执行结果是
public class Test
{
public int aMethod()
{
static int i=0;
i++;
System.out.println(i);
}
public static void main(String args[])
{
Test test = new Test();
test.aMethod();
}
}
A.编译错误 B.0 C.1 D.运行成功,但不输出
参考答案:A
17[单选题]下列代码的执行结果是
public class Test
{
public int aMethod()
{
static int i=0;
i++;
System.out.println(i);
}
public static void main(String args[])
{
Test test = new Test();
test.aMethod();
}
}
A.编译错误 B.0 C.1 D.运行成功,但不输出
参考答案:B
18[单选题]下列常见的系统定义的异常中,哪个是数组越界异常?
A.ArrayIndexOutOfBoundsException
B.IOException
C.NullPointerException
D.ArithmeticException
参考答案:A
19[单选题]在oneMethod()方法运行正常的情况下,程序段将输出什么?
public void test()
{
try { oneMethod();
System.out.println("condition 1");
} catch (ArrayIndexOutOfBoundsException e)
{
System.out.println("condition 2");
} catch(Exception e)
{
System.out.println("condition 3");
} finally
{
System.out.println("finally");
}
}
A.condition 1 B.condition 2 C.condition 3 D.condition 1
finally
参考答案:D
20[单选题]下列常见的系统定义的异常中,哪个是输入、输出异常?
A.ClassNotFoundException
B.IOException
C.FileNotFoundException
D.UnknownHostException
参考答案:B
21[单选题]
参考答案:C
22[填空题]诊断和改正程序中错误的工作通常称为 。
参考解析:调试或程序调试或软件调试或Debug(英文字母大小写均可)或调试程序或调试软件
23[填空题]程序测试分为静态分析和动态测试。其中 是指不执行程序,而只是对程序文本进行检查,通过阅读和讨论,分析和发现程序中的错误。
参考解析:静态分析
24[填空题]通常,将软件产品从提出、实现、使用维护到停止使用退役的过程称为______。
参考解析:软件生命周期
25[填空题]问题处理方案的正确而完整的描述称为 。
参考解析:算法或程序或流程图
相关推荐:
北京 | 天津 | 上海 | 江苏 | 山东 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
广东 | 河北 | 湖南 | 广西 | 河南 |
海南 | 湖北 | 四川 | 重庆 | 云南 |
贵州 | 西藏 | 新疆 | 陕西 | 山西 |
宁夏 | 甘肃 | 青海 | 辽宁 | 吉林 |
黑龙江 | 内蒙古 |