题目内容

简述等价类划分的原则。

查看答案
更多问题

根据课堂实训,写出某一网站登录功能的等价类划分的测试用例

下列程序的执行,说法正确的是().public class MultiCatch {public static void main(String args[]) {try {int a=args.length;int b=42/a;int c[]={1};c[42]=99;System.out.println(“b=”+b);} catch(ArithmeticException e) {System.out.println(“除0异常:”+e);} catch(ArrayIndexOutOfBoundsException e) {System.out.println(“数组超越边界异常:”+e);}}}

A. 程序将输出第10行的异常信息
B. 程序第10行出错
C. 程序将输出“b=42”
D. 程序将输出第15和19行的异常信息

下列程序的执行,说法正确的是()。public class Test{static void procedure(){try{int c[]={1};c[42]=99;}catch(ArrayIndexOutOfBoundsException e){System.out.println("数组超越界限异常:"+e);}}public static void main(String args[]){try{procedure();int a=args.length;int b=42/a;System.out.println("b="+b);}catch(ArithmeticException e){System.out.println("除0异常:"+e);}}}

A. 程序只输出第7行的异常信息
B. 程序只输出第17行的异常信息
C. 程序将不输出异常信息
D. 程序将输出第7行和第17行的异常信息

对程序语言而言,一般有编译错误、()和()三类错误。

答案查题题库