问题 听力题

先通读下面的短文,然后根据短文内容和所给首字母,在空格内填入一个适当的单词。使短文完整。所填单词必须在答题卡标有题号的横线上完整写出。(本大题共10空,每空0.5分,共5分)

Do you like listening to radio? For some people, listening to radio programs has become a part of their d__小题1:lives. How did this start?

Radio began as ship-to-ship and ship-to-land c__小题2:. In the early 1900s, several people showed that radio could do more than that. Dr. Lee De Forest, is w____小题3: known as the father of radio. He made the first p___小题4: radio broadcast. As a fan of opera, De Forest wanted to s__小题5: the musical entertainment into homes. His first try was on January 13,1910, from the Metropolitan Opera House (大都会歌剧院) in New York City. However, the signal was not good enough. Only a few listening stations and a___小题6:in the harbor (港湾) area were able to hear this broadcast. Although there was a lot to do to improve, it s__小题7:what radio could do.

Look at the world around us. Radio broadcasts are e___小题8:. Information now travels at the speed of l____小题9:. Music, news, traffic reports and speeches from world leaders are all on the radio. Can you imagine a world w___小题10:radio?

答案

小题1:daily   

小题2:connect

小题3:well  

小题4:personal

小题5:send

小题6:apartment 

小题7:save  

小题8:everywhere

小题9:light

小题10:without

题目分析:短文大意:你喜欢听收音机吗?对于一些人来说,收听广播节目已经成为日常生活的一部分。这是如何开始的?本文做了简要介绍。

小题1:句意:对于一些人来说,收听广播节目已经成为日常生活的一部分。故填写daily。     

小题2:句意:广播电台开始作为船和船、船和陆地的连接。故填写connect。

小题3:句意:李博士德森林被著称为无线电之父。故填写well。   

小题4:句意:他创办了第一个个人广播。故填写personal。

小题5:句意:作为一个歌剧迷,德林想把音乐娱乐送到家。故填写send。

小题6:句意:只有少数的听力站和港口区域的公寓能够听到广播。故填写apartment。 

小题7:句意:节省无线电能做什么。故填写save。   

小题8:句意:无线电广播无处不在。故填写everywhere。

小题9:句意:现在的信息以光速传播。故填写light。

小题10:句意:你能想象没有无线电的世界吗?故填写without。

多项选择题
填空题

阅读下列说明、图和C++代码,将应填入 (n) 处的字句写在答题纸的对应栏内。
[说明]
已知对某载客车辆(Car)进行类建模,如图5-1所示,其中类Engine表示发动机引擎,类Wheel表示车轮,类Body表示车身,类Driver表示司机,类Passenger表示乘客。


[C++代码]
const int (1) =7; //定义最多载客数
const int MAX WHEELS=5; //定义最多轮胎数
class Body
//此处代码省略
; //车身类
class Passenger
//此处代码省略
; //乘客类
class Wheel
//此处代码省略
;//车轮类
class Driver //司机类
public:
string name;//表示第几路公交车司机
Driver(string driverName):name( (2) ); //构造函数
;
class Engine //引擎类
public:
string engineNo; //引擎编号
Engine(string engineNo) (3) ->engineNo=engineNo; //构造函数
;
class Car //汽车类
protected:
Engine * engine; Driver * driver; Body body;
Wheel * wheels[MAX_HEELS]; Passenger * passengers[MAX_PASSENGERS];
public:
Car(Driver * driver)//构造函数
this->driver=driver;
engine=new Engine("TX6536型号引擎");
int index;
for (index=0; index<MAX_HEELS; index++)
wheels[index]=new Wheel();

for(index=0; index<MAX_PASSENGERS; index++)
passengers[index]=NULL;


virtual~Car() //析构函数
for (int index=0; index<MAX_WHEELS; index++)
delete wheels[index];
delete (4) ;

int getPassengerNumber()//获取车上乘客数量
//此处代码省略

void getOnPassenger(Passenger * aPassenger)//乘客上车
//此处代码省略

void run()//开车
if(driver==NULL) cout<< "司机尚未上车!"; return;
//此处代码省略

);
void main()
Driver driver("第五路公交车司机");
Car car ( (5) );
Passenger passengers [MAX_PASSENGERS];
for (int index = 0; index<MAX PASSENGERS; index++) //乘客上车处理
car.getOnPassenger(&passengers[index]);
car.run();