单项选择题

在数据库设计中,将E-R图转换为关系模式的过程属于( )。

A.需求分析阶段
B.逻辑设计阶段
C.概念设计阶段
D.物理设计阶段
<上一题 目录 下一题>
热门 试题

单项选择题
重载输入流运算符>>必须使用的原型为
A) istream& operator>>(istream&,<类名>&);
B) istream& operator>>(istream,<类名>);
C) istream operator>>(istream,<类名>&);
D) <类名>operator>>(istream&,<类名>&);
单项选择题
有如下程序: #include<iostream.h> class Base protected:int i; public:int j; ; class Derived:public Base int m; public:int n; ; int main() Derived d; d.i=0; [1] d.j=0; [2] d.m=0; [3] d.n=0; [4] return 0; 其中主函数中有两个赋值语句有错,这两个错误的赋值语句是( )。
A.[1]和[2]
B.[1)和[3]
C.[2]和[3]
D.[2]和[4]
相关试题
  • 类模板的使用实际上是将类模板实例化成一个...
  • 以下程序的输出结果是( )。 #include...