皮皮学,免费搜题
登录
搜题
【单选题】
单相变压器一次侧、二次侧电压的相位关系取决于()
A.
一次、二次绕组的同名端
B.
对一次侧、二次侧出线端标志的规定
C.
一次、二次绕组的同名端以及对一次侧、二次侧出线端标志的规定
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】以下程序的执行结果为( )。 #include<iostream.h> Class sample { int n; public: sample(int i){n=i; } operator ++() { n++; } void display() {cout<<n<<end1; } }; void main() { sample obj(5); obj++;
A.
5
B.
6
C.
7
D.
8
【单选题】以下程序的执行结果为( )。 #include <iostream.h> class Sample { int n; public: Sample(int i) {n=i;} operator++() {n++;} //前缀重载运算符 operator++(int) {n+=2;} //后缀重载运算符 void disp() { cout<<'n='<<n<<endl; } }; void mai...
B.
n=1
C.
n=3
D.
n=5 n=3 n=2 n=4 n=6
【单选题】以下程序的执行结果为( )。 #include<iostream.h> class Sample { int n public: Sample(int i){n=i} operator++(){n++} //前缀重载运算符 operator++(int){n+=2} //后缀重载运算符 void disp() { cout<<'n='<<n<<end1 } } void main() { Samp...
A.
disp()
B.
disp() } A.n=4 n=3 B.n=1 n=2 C.n=3 n=4 D.n=5 n=6
【单选题】Question 5 to 7 will be based on the following news item.
A.
Getting high skilled people.
B.
Promoting company's technology.
C.
Finding enough employees.
D.
Increasing members of immigrants.
【判断题】在艺术创作的具体观念方面,柳青和路遥有明显的继承关系。
A.
正确
B.
错误
【简答题】以下程序的执行结果为______。 include<iostream> using namespace std; class base { public: virtual void who() { cout<<'base class'<<endl; } }; class derivel:public base { public: void who() { cout<<'d
【单选题】Question 5 to 7 will be based on the following news item.
A.
The number of them decreases dramatically.
B.
They mainly move from south states.
C.
They come to Chicago without work visa.
D.
The number fo them increases after the recession.
【单选题】以下程序的执行结果为( )。 #include<iostream.h> class myClass { Dublic: myClass(int data) ; myClass(){value=0; }; myClass(myClass &obj); void print(){ cout<<value<<end1; } ~myClass(){} private: int value; }; myCl...
A.
0
B.
100
C.
10
D.
程序编译时出错
【简答题】以下程序的执行结果为【 】。 include<iostream> using namespace std; void overload(int num) { cout<<num<<end1; } void overload(char ch) { char c=ch+1; cout<<c<<end1; } int main() { overload('X'); return 0; }
【单选题】以下程序的执行结果为
A.
4 5 6 17
B.
3 5 6 17
C.
8 4 5 17
D.
3 8 5 17
相关题目: