在http://www.test.edu.cn 中,( )表示主机名。
A.www
B.test
C.edu
D.cn
参考答案:A
Santa _____________ them gifts yesterday.[ ]
A. bring
B. brought
C. to bring
若有以下程序: #include<iostream> using namespace std; class Base public: Base() x=0; int x; ; class Derivedl:virtual public Base publiC: Derivedl() X=10; ; Class Derived2:Virtual public Base public: Dedved2() x=20; ; class Derived:public Delivedl,protected Derived2; int main() Derived obj; cout<<obj.X<<endl; return 0; 该程序运行后的输出结果是( )。
A.20
B.30
C.10
D.0