填空题
数据管理技术发展过程经过人工管理、文件系统和数据库系统3个阶段,其中数据独立性最高的阶段是
【1】
。
【参考答案】
数据库系统或数据库系统阶段或数据库或数据库阶段或数据库管理技术阶段
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
算法复杂度主要包括时间复杂度和 【2】 复杂度。
点击查看答案&解析
单项选择题
下列程序的功能是在监控台上每隔一秒钟显示一个字符串 Hello! ,能够填写在程序中下划线位置,使程序完整并能正确运行的语句是( )。 public class Test implements Runnable{ public static void main (String args[]){ Test t=new Test (); Thread tt=new Thread(t); tt.start(); } public void run(){ for(;;) { try{ ______; }catch( ______ e) {} System.out.println( Hello ); } } }
A.sleep(1000) InterruptedException
B.sleep(1000) InterruptedException
C.Threasleep(1000) RuntimeException
D.Threasleep(1000) InterruptedException
点击查看答案&解析
相关试题
与显示相关的Applet方法有 【10】 ()...
Applet生命周期方法有init(), 【11】...
Java对象串行化技术,主要是通过ObjectInpu...
FileInputStream是字节流,BufferedWriter...
当使用Thread t=new Thread(r)创建一...