填空题
在计算机软件系统的体系结构中,数据库管理系统位于用户和
【1】
之间。
【参考答案】
操作系统 或 OS
点击查看答案
<上一题
目录
下一题>
热门
试题
单项选择题
有如下程序:#include <iostream>using namespace std;class Base private: void fun1() const cout << fun1 ; protected: void fun2() eonst cout << fun2 ; public: void tim3() const cout << fun3 ; ; class Derived: protected Base public: void fun4() const cout << fun4 ; ;int main()Derived obj;obj.fun1(); ①obj.fun2(); ②obj.fun3(); ③obj.fun4(); ④return 0;其中有语法错误的语句是( )。
A.①②③④
B.①②③
C.②③④
D.①④
点击查看答案
单项选择题
若有如下程序:#include <iostream>using namespaces std;int s=0;class samplestatic int n;public:sample(int i) n=i;static void add() s+=n;;int sample:: n=0;int main()sample a(2),b(5);sample:: add();cout<<s<<end1;return 0;程序运行后的输出结果是( )。
A.2
B.5
C.7
D.3
点击查看答案
相关试题
定义在类内部的函数被类默认为 【12】 ...
下面是一个栈类的模板,其中push函数将元素...
下面是复数类complex的定义,其中重载的运...
以下函数模板max()的功能是:返回数组a中...
有以下程序#include <iostream>using ...