4、测试 C.只使用白盒测试 D.只使用黑盒测试 10. 关系数据库管理系统应能实现的专门关系运算包括 A选择、投影、连接 B排序、索引、统计 C关联、更新、排序 D显示、打印、制表 11.指出下列程序运行的结果( ) public class Example{ String str=new String(″good″); char[]ch={′a′,′b′,′c′}; public static void main(String args[]){ Example ex=new Example(); e
5、x.change(ex.str,ex,ch); System.out.print(ex.str+″and″); System.out.print(ex.ch); } public void change(String str,char ch[]){ str=″test ok″; ch[0]=′g′; } } A.good and abc B.good and gbc C.test ok and abc D.test ok and gbc 12.运行下列程序,会产生的结果是( ) publi
6、c class X extends Thread implements Runable{ public void run(){ System.out.println(″this is run()″); } public static void main(String args[]) } Thread t=new Thread(new X()); t.start(); } } A.第一行会产生编译错误 B.第六行会产生编译错误 C.第六行会产生运行错误 D.程序会运行和启动 13.对