安装漏电保护器时,漏电保护器后面的工作零线()重复接地。
A、可以
B、不能
C、必须
参考答案:B
房地产经纪机构的分支机构应当具有( )名以上持有《中华人民共和国房地产经纪人执业资格证书》的专职人员。
A.1
B.2
C.3
D.4
有以下程序: #include <iostream> using namespace std; class Base { private: int a,b; public: Base(int x, int y) {a=x;b=y; } void Show() {cout<<a<< ’,’ <<b<<end1; } }; class Derived : public Base { private: int c; public: Derived(int x, int y, int z) : Base(x,y),c(z) {} void Show() {cout<<c<<end1; } }; int main() { Base b(50,50),*pb; Derived d(10,20,30); pb=&d; pb->Show(); return 0; } 运行后的打印结果为 【14】