各项新建、扩建、改建、技术改造、技术引进项目竣工图的负责编制人应是()
A.施工单位
B.设计单位
C.竣工单位
D.咨询单位
参考答案:A
用球隙测量交直流电压时,关于串接保护电阻的说法,下面哪个是对的?()。
A、球隙必须串有很大阻值的保护电阻
B、串接电阻越大越好
C、一般规定串联的电阻不超过500Ω
D、冲击放电时间很短,不需要保护球面
下列程序的输出结果是( )。 #include<iostream> using namespace std; class TestClass static int i; public: TestClass()i++; ~TestClass()i--; static int getVal()return i; ; int TestClass::i=O; void fun()TestClass ob2;cout<<ob2.getVal(); int main() TestClass ob1; fun(); TestClass*ob3=new TestClass;cout<<ob3->getVal(); delete ob3;cout<<TestClass::getVal(); return 0;
A.111
B.121
C.211
D.221