单项选择题

数据库设计的四个阶段是:需求分析、概念设计、逻辑设计和( )。

A.编码设计
B.测试阶段
C.运行阶段
D.物理设计
<上一题 目录 下一题>
热门 试题

单项选择题
有如下程序:#include <iostream>using namespace std;class Baseprivate: char c;public: Base(char n):c(n) ~Base() cout<<c; ;class Derived: public Baseprivate: char c;public: Derived(char n):Base(n+1),c(n) ~Derived() cout<<c; ;int main() Derived obj('x'); return 0; 执行上面的程序将输出()。

A. xy                 
B. yx
C. x                 
D. y

单项选择题
计算斐波那契数列第n项的函数定义如下: int fib(int n) if(n= =0) return 1; else if(n= =1) return 2; else return fib(n-1)+fib(n-2); 若执行函数调用表达式fib(2),函数fib被调用的次数是()

A.1
B.2
C.3
D.4

相关试题
  • C++模板包括( )。
  • 有如下程序:#include <iostream>using...
  • 在整型指针变量ptr1、ptr12的定义中,错...
  • 数据库DB、数据库系统DBS、数据库管理系统D...
  • 在深度为5的满二叉树中,叶子结点的个数为...