办公自动化系统是一个综合性的()系统。
A.办公事务;
B.办公管理;
C.办公设备;
D.办公决策
参考答案:B
在下面的程序的横线处填上适当的语句,使该程序的输出为12。 #include<iostream.h> using namespace std; class Base { public: int a,b; Base(int i){a=i;} }; class Derived:public Base { int a; public: Derived(int x):Base(x),b(x+1){}; void show() { ______;//输出基类数据成员a的值 cout<<b<<endl; } }; int main() { Derived d(1); d.show(); return 0;
项目中有两类过程,其中因产品不同而各异的一类过程是()。
A.产品的创造过程
B.产品的管理过程
C.项目的设计过程
D.项目的管理过程