道路运输管理部门对未按规定安装符合标准的卫星定位装置的新增车辆,不予核发()。
A.道路运输证
B.营运证
C.从业资格证
D.机动车行驶证
参考答案:A
水泵进口滤水器内的舌形底阀的作用()
A.防止煤泥进入
B.防止杂物进入
C.防止停泵漏水
D.防止坏泵
下列程序的运行结果是______。 #include<iostream.h> class Base public: void f(int x)cout<<“Base:”<<x<<endl; ); class Derived:public Base public: void f(char*str)cout<<“Derived:”<<str<<endl; ; void main(void) Base*pd=new Base; pd=new Derived; pd->f(‘a’);