单项选择题
下列叙述中错误的是
A.在数据库系统中,数据的物理结构必须与逻辑结构一致
B.数据库技术的根本目标是要解决数据的共享问题
C.数据库设计是指在已有数据库管理系统的基础上建立数据库
D.数据库系统需要操作系统的支持
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序: #include <iostream> using namespace std; class test private: int a; public: test( )cout<< constructor <<endl; test(int
A.cout<<a<<endl; <br> test(const test &_test) <br> a=_test.a; <br> cout<<"copy constructor"<<endl; <br> <br> ~test()cout<<"destructor"<<endl; <br> ; <br> int main( ) <br> test A(3) <br> return 0; <br> <br> 程序的输出结果是A) 3<br> destructor
B.constructor<br> destructor
C.copy constructor<br> destructor
D.3
点击查看答案&解析
单项选择题
在E-R图中,用来表示实体之间是联系的图形是
A.矩形
B.椭圆形
C.菱形
D.平行四边形
点击查看答案&解析
相关试题
有如下程序: #include <iostream> u...
如果不使用多态机制,那么通过基类的指针虽...
下面程序对一维坐标点类Point进行了运算符...
有如下程序: #include <iostream> u...
有如下程序: #include<iostream> usi...