单项选择题

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

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()
相关试题
  • 在长度为n的有序线性表中进行二分查找。最...
  • 在微机中,字符的比较就是对它们的____...
  • 【7】 是类中的一种特殊方法,是为对象初...
  • 为了实现线程之间的通信,java.lang.Obie...
  • 关系操作的特点是 【5】 操作。