填空题
数据管理技术发展过程经过人工管理、文件系统和数据库系统3个阶段,其中数据独立性最高的阶段是______。
【参考答案】
数据库系统 或 数据库系统阶段或数据库 或 数据库阶段 或 数据库管理技术阶段
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
下面程序段的输出结果是 class Base int i; Base() add(1); void add(int v) i+=v; void print() System.out.println(i); class Extension extends Base Extension() add(2); void add(int v) i+=v*2; public class Test public static void main(String args[]) bogo(new Extension()); static void bogo(Base b) b.add(8); b.print();
A.9
B.18
C.20
D.22
点击查看答案&解析
单项选择题
下面程序段的输出结果是 public class Test public static void main(String args[]) int x,y; x=(int)Math.sqrt(5) 2+(int)Math.random()*5 2; y=(int)Math.sqrt(3) 2+(iht)Math.random()*3 2; if(x>y) System.out.println( x>y ); else if (x==y) System.out.println( x=y ); else System.out.println( x<y );
A.x>y
B.x=y
C.x<y
D.编译错误
点击查看答案&解析
相关试题
Java对象串行化技术,主要是通过_____...
Swing的顶层容器有:JApplet,JWindow,JDi...
下面程序段是从对象流中读取对象,请将程序...
线程在生命周期中要经历5种状态,分别是新...
8|9&10^11的结果是______。