检修停电设备或在线路中装设接地线,接地线应采用多股裸软铜线,其截面应不得小于()mm

题型:单项选择题

问题:

检修停电设备或在线路中装设接地线,接地线应采用多股裸软铜线,其截面应不得小于()mm2

A、10

B、25

C、35

D、16

考点:电工特种作业操作证电工复审电工复审题库
题型:单项选择题

如果商品价格、相关商品的价格和消费者的偏好保持不变,当消费者收入减少时______

A.需求曲线向左平行移动
B.需求曲线向右平行移动
C.需求曲线向左上方移动
D.需求曲线向右上方移动

题型:单项选择题
完形填空(共20小题,每题1.5分,共30分)
Today I am known for my voice. But it  31  a long time to believe I could read well. When I was young I stuttered (结巴)  32  badly that I was completely  33  to speak in public.
34  , when I was 14, Professor Donald Crouch came to our school. He was a retired college professor. He held a book of poems  35   it were a diamond necklace. When he heard our school was  36  Shakespeare, he could no longer   37  not being a part of our school.
When he  38  that I not only loved poetry but was  39  it, we became closer. There was, however, one  40   between us—Professor Crouch could not stand the  41  that I refused to read my poems to the class.
“Jim, poetry is 42 to be read aloud,” he said. “You should be able to speak those beautiful words.” I shook my head and  43  .
Then he tricked me. After handing in a poem, I waited for his  44 . It didn’t come. Instead, one day as the students gathered together, he said to me, “Jim, I don’t think you wrote this.” I  45 him in disbelief. “Why”, I started, “of course I  46 !” “Well, then,” he said, “you’ve got to prove it by getting up and reciting it  47  memory.”
With knees shaking, I walked up. For a moment I stood  48 . Then I began, and kept going. I recited my poem all the way through!
Afterwards, Professor Crouch congratulated me, and  49  me to read other writers’ poems before the public.
Before long, I discovered I did have a (n) 50  and found my fellow students actually looked forward to hearing me recite.
小题1:
A.lastedB.tookC.wasD.wasted
小题2:
A.soB.fairlyC.suchD.rather
小题3:
A.uncertainB.unlikelyC.unbelievableD.unable
小题4:
A.ButB.BesidesC.ThenD.However
小题5:
A.even ifB.so thatC.as ifD.like
小题6:
A.actingB.teachingC.likingD.choosing
小题7:
A.preventB.helpC.keepD.stand
小题8:
A.learnB.knewC.decidedD.proved
小题9:
A.writingB.readingC.recitingD.saving
小题10:
A.differenceB.difficultyC.promiseD.friendship
小题11:
A.questionB.ideaC.factD.mind
小题12:
A.saidB.meantC.causedD.prepared
小题13:
A.answered backB.showed upC.turned awayD.stuck to
小题14:
A.poemB.praiseC.returnD.opinion
小题15:
A.replied toB.laughed atC.pointed toD.stared at
小题16:
A.could B.didC.shouldD.had
小题17:
A.withB.ofC.fromD.in
小题18:
A.changelessB.hopelessC.helplessD.breathless
小题19:
A.enabledB.persuadedC.encouragedD.supported
小题20:
A.voiceB.soundC.appearanceD.interest
题型:单项选择题

阅读下列说明和C++代码,将应填入 (n) 处的字句写在对应栏内。

[说明]

已知某企业欲开发一个家用电器遥控系统,即用户使用一个遥控器即可控制某些家用电器的开与关。遥控器如图18-11所示。该遥控器共有4个按钮,编号分别是0~3,按钮0和2能够遥控打开电器1和电器2,按钮1和3则能遥控关闭电器1和电器2。由于遥控系统需要支持形式多样的电器,因此,该系统的设计要求具有较高的扩展性。现假设需要控制客厅电视和卧室电灯,对该遥控系统进行设计所得类图如图18-12所示。

在图18-12中,类RomoteController的方法onPressButton(int button)表示当遥控器按键按下时调用的方法,参数为按键的编号;Command接口中的on()和off()方法分别用于控制电器的开与关;Light中的mrnLight(int degree)方法用于调整电灯灯光的强弱,参数degree值为0时表示关灯,值为100时表示开灯,并且将灯光亮度调整到最大;TV中的setChannel(int channel)方法表示设置电视播放的频道,参数channel值为0时表示关闭电视,值为1时表示打开电视并将频道切换为第1频道。

[C++代码]

class Light //电灯类

public:

void turnLight(int degree)//调整灯光亮度,0表示关灯,100表示亮度最大;

class TV//电视机类

public:

void setChannel(int channel)//调整频道,0表示关机,1表示开机并切换到第1频道;

class Command//抽象命令类

public:

virtual void on()=0;

virtual void off()=0;

class RemoteController //遥控器类

protected:

Command *commands[4];//遥控器有4个按钮,按照编号分别对应4个Command对象

public:

void onPressButton(int button) //按钮被按下时执行命令对象中的命令

if(button % 2==0) commands[button]->on();

else commands[button]->off();

void setCommand(int button,Command *command)

(1) =command;//设置每个按钮对应的命令对象

class LightCommand:public Command //电灯命令类

protected:Light *light; //指向要控制的电灯对象

public:

void on()light->turnLight(100);;

void off()light-> (2) ;;

LightCommand(Light *light)(this->light=light;;

class TVCommand:public Command//电视机命令类

protected:TV *tv; //指向要控制的电视机对象

public:

void on()(tv-> (3) ;;

void off()(tv->setChannel(0);;

TVCommand(TV *tv)(this->tv=tv;;

void main()

Light light;Tv tv;//创建电灯和电视对象

LightCommand lightCommand(&light);

TVCommand tvCommand(&tv);

RemoteControiler remoteController;

remoteController.setCommand(0, (4) ); //设置按钮0的命令对象

……//此处省略设置按钮1、按钮2和按钮3的命令对象代码

本题中,应用命令模式能够有效让类 (5) 和类 (6) 、类 (7) 之间的耦合性降至最小。

(6)处填()。

题型:单项选择题

掘进工作面使用专用的()进行通风,其风量必须满足安全生产的要求。

A、变压器

B、开关

C、局部通风机

题型:单项选择题

试举出"若X→→Y和Y→→Z,则X→→Z"不成立的一个例子。

更多题库