填空题

数据库系统的主要特点为数据集成性、数据的高______和低冗余性、数据独立性和数据统一管理和控制。

【参考答案】

共事性
<上一题 目录 下一题>
热门 试题

单项选择题
清阅读下面程序,说明该程序创建线程使用的方法是( )。 publicclassThreadTest publicstaticvoidmain(Stringargs[]) Threadt1=newThread(newHolloWorld()); Threadt2=newThread(newHolloWorld()); t1.start(); t2.start(); classHolloWorldimplementsRunnable inti; publicvoidrun() while(true) System.out.println( HolloWorld +i++); if(i==5)break;
A.继承Thread类
B.实现Runnable接口
C.t1.start()
D.t2.stan()
单项选择题
请阅读下面程序 publicclassExampleStringBuffer publicstaticvoidmain(String[]args) StringBuffersb=newStringBuffer( test ); System.out.println( buffer-, +sb); System.out.println( longth= +sb.1ength()); 程序运行结果中在“length”后输出的值是( )。
A.10
B.4
C.20
D.30
相关试题
  • mouseDragged()方法是MouseMotionListene...
  • 当实现Runnable接口时,要实现的方法是__...
  • 设a=8,则表达式a>>>2的值是____...
  • 在java.io包中有某个类同时实现了Datalnpu...
  • 在下列程序的下划线处,填入适当语句使程序...