赞题库-背景图
单项选择题

在软件工程中,白盒测试法可用于测试程序的内部结构。此方法将程序看做( )。

A) 循环的集合
B) 地址的集合
C) 路径的集合
D) 目标的集合
<上一题 目录 下一题>
热门试题

单项选择题在计算机中,算法是指( )。

A) 查询方法
B) 加工方法
C) 解题方案的准确而完整的描述
D) 排序方法

单项选择题阅读下面程序 public cmass ThreadTest public static void main(String args[]) Thread t1=new Thread(new Hello()); Thread t2=new Thread(new Hello()); t1.start(); t2.start(); class Hello implements Runnable int i; public void run() while(true) System.out.println( Hello +i++); it(i==5) break; 此程序创建线程所使用的方法是

A) 继承Thread类
B) 实现Runnable接口
C) t1.start()
D) t2.start()