问题 填空题


Health officials in western Siberia are to begin in slaughter of thousands of birds today after identifying Russia’s first outbreak of a bird flu strain that can be fatal in humans. Doctors in neighboring Kazakhstan have also (1) that a 19-year-old poultry worker (2) admitted to hospital with (3) of bird flu, only to be diagnosed (4) double pneumonia.
The H5N1 strain of avian (5) has killed 60 people (6) 2fib in Vietnam, Thailand, Cambodia and Indonesia, but has rarely been found in birds or humans (7) Asia.
Health officials (8) that HSN1 is infecting migrating birds, which could spread the (9) into Europe. Earlier this year China registered the first outbreak of H5N1 (10) wild birds, some of which (11) to breeding grounds in Siberia. These birds could come (12) contact with others flying to Europe and North America.
Russia’s (13) began in the Novosibirsk (14) , about 1,750 miles (15) of Moscow in the Asian part of Russia, early last month, but the veterinary service (16) the virus only last week. Valery Mikheyev, the chief sanitary doctor of Novosibirsk, said that teams had been (17) the (18) birds and supervising the slaughter in13 (19) villages. He said, "The state of (20) of the inhabitants of these areas gives (21) cause for alarm. Up to 6,000 people are being (22) per day.
The virus seems to have (23) only private farms that let (24) mix with wild birds. Further outbreaks were registered in the Omsk and Altai regions, but the strain had (25) to be determined, Russia’s Emergency Situations Ministry said.

答案

参考答案:health

解析:

[分析]: 语境搭配 本句意为:这些地区居民的 ______ 状况引发 ______ 惊慌的理由;6,000多人每天都被 ______ 着。根据语境判断,当地爆发了禽流感,人们更担心的是当地居民的健康,因此此处应填“健康状况”,答案为health。

单项选择题 案例分析题
填空题


阅读下列说明、图和C++代码,填补空缺。
[说明]
已知对某载客车辆(Car)进行类建模,如图12-2所示,其中类Engine表示发动机引擎,类Wheel表示车轮,类Body表示车身,类Driver表示司机,类Passenger表示乘客。


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