消防水炮按安装方式可分为()三种类型
A.固定式
B.手动式
C.车载式
D.移动式
参考答案:A, C, D
把一根粗细均匀的细铁丝对折起来,电阻将______,若剪去一半,再把剩余部分拉到原长,则这部分电阻将______(填“变大”、“变小”或“不变“).
有如下程序: #include <iostream> using namespace std; int main( ){ int*P; *P=9; cout<<"The value at P:"<<*P: return 0; } 编译运行程序将出现的情况是
A.编译时出现语法错误,不能生成可执行文件
B.运行时一定输出:The value at P:9
C.运行时一定输出:The value at P:*9
D.运行时有可能出错