填空题

数据管理技术发展过程经过人工管理、文件系统和数据库系统三个阶段,其中数据独立性最高的阶段是______。

【参考答案】

数据库系统 或 数据库系统阶段 或 数据库 或 数据库阶段 或 数据库管理技术阶段
<上一题 目录 下一题>
热门 试题

单项选择题
有以下类定义 class Point{ public: Point{int x = 0, int y=0) {_x = x; _y = y;} void Move int xoff, int yoff) {_x +=xoff;_y+=yoff;} void Print() const {cout<<’(’<<_x<<’,’<<_y<<’)’ << end1;} private: int_x,_y; }; 下列语句中会发生编译错误的是
A.Point pt;pPrint();
B.const Point pt;pPrint();
C.Point pt;pMove(1, 2);
D.const Point pt;pMove(1, 2)
单项选择题
下列程序的输出结果是 #include <iostream> using namespace std; int main () { char a[] = Hello,World : char*ptr = a; while (*ptr) { if(*ptr>= ’a’ &&*ptr <=’z’ cout<<char{*ptr+’A’-’a’); else cout<<*ptr; ptr++; } return 0; }
A.HELL WORLD
B.Hello, World
C.hELLO, wORLD
D.hello, world
相关试题
  • 请将下列类定义补充完整class Base{publi...
  • 与成员访问表达式p->name等价的表达式是...
  • 有如下程序:#include <iostream>using...
  • 在下面程序的横线处填上适当的内容,使程序...
  • 在下面程序的横线处填上适当的内容,使程序...