首页 > 通信工程师
题目内容 (请给出正确答案)
[单选题]

All the passengers were killed in the air _____ except the airhostess, who survived it only to die of hunger and thirst in the desert.

A.crash

B.smash

C.clash

D.crisis

查看答案
答案
收藏
如果结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能还需要:
您的账号:
发送账号密码至手机
发送
安装优题宝APP,拍照搜题省时又省心!
更多“All the passengers were killed…”相关的问题
第1题
The All Risks in PICC Ocean Marine Cargo Clauses does not cover the risks of ().A.heavy w

The All Risks in PICC Ocean Marine Cargo Clauses does not cover the risks of ().

A.heavy weather

B.earthquake

C.strike

D.hook damage

点击查看答案
第2题
The movement of freight by air is more complicated than the movement of passengers by air.
()

A.正确

B.错误

点击查看答案
第3题
试题(71)~(75)A Bluetooth device can be either a master or a slave and any of the devices w

试题(71)~(75)

A Bluetooth device can be either a master or a slave and any of the devices within a (71)can be the master. There is only one master and there can be up to (72) active slave devices at a time within a single network. In addition, a device may be a standby slave or a parked slave. There can be up to (73) parked slaves. If there are already maximum number of active slaves, then a parked slave must wait until one of the active slaves switches to (74) mode before it can become active. Within a network, all (75) communications are prohibited.

(71)

A. Wireless LAN

B. Wireless MAN

C. Cellular radio network

D. Piconet

(72)

A. 7

B. 15

C. 63

D. 255

(73)

A. 127

B. 255

C. 511

D. 1023

(74)

A. master

B. standby slave

C. parked slave

D. active slave

(75)

A. master-to-master

B. master-to-slave

C. slave-to-slave

D. slave-to-master

点击查看答案
第4题
The reason why the movement of freight by air is more complicated than the moveme
nt of passengers by air is that freight can not speak for itself or walk from plane to plane when making a connection or take care of its own travel documents.()

此题为判断题(对,错)。

点击查看答案
第5题
Why the movement of freight by air is more complicated than the movement of passengers by
air? ()

A.complicated documentary formalities

B.complicated processing of movement

C.complicated government regulations

D.complicated routes

点击查看答案
第6题
试题五(共 15 分) 阅读下列说明、图和C++代码,将应填入 (n) 处的字句写在答题纸的对应栏内。[说明]

试题五(共 15 分)

阅读下列说明、图和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_WHEELS]; Passenger * passengers[MAX_PASSENGERS];

public:

Car(Driver *driver){ //构造函数

this->driver = driver;

engine = new Engine("TX6536 型号引擎");

for (int index = 0; index < MAX_WHEELS; index++){

wheels[index] = new Wheel();

}

for (int 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();

}

点击查看答案
第7题
试题七(共 15 分) 阅读下列说明、图和Java代码,将应填入 (n) 处的字句写在答题纸的对应栏内。 [说

试题七(共 15 分)

阅读下列说明、图和Java代码,将应填入 (n) 处的字句写在答题纸的对应栏内。

[说明]

已知对某载客车辆(Car)进行类建模,如图 7-1所示,其中类 Engine 表示发动机引擎,类 Wheel 表示车轮,类 Body 表示车身,类 Driver 表示司机,类 Passenger 表示乘客。

[Java 代码]

class Body{ //此处代码省略 }; //车身类

class Passenger{ //此处代码省略 }; //乘客类

class Wheel{ //此处代码省略 }; //车轮类

class Driver{ //司机类

public String name; //表示第几路公交车司机

public Driver(String driverName){name = driverName;} //构造函数

};

class Engine{ //引擎类

public String engineNo; //引擎编号

public Engine(String engineNo){ this.engineNo = engineNo; } //构造函数

};

public class Car{ //汽车类

static final int (1) = 7; //定义最多载客数

static final int MAX_WHEELS = 5; //定义最多轮胎数

protected Engine engine;

protected Driver driver;

protected Body body = new Body();

protected Wheel[] wheels;

protected Passenger[] passengers;

public Car(Driver driver){ //构造函数

(2) .driver = driver;

engine = new Engine("TX6536 型号引擎");

wheels = new Wheel[MAX_WHEELS];

passengers = new Passenger[MAX_PASSENGERS];

for (int index = 0; index < MAX_WHEELS; index++){

wheels[index] = new Wheel();

}

for (int index = 0; index < MAX_PASSENGERS; index++){

passengers[index] = null;

}

}

int getPassengerNumber(){ //获取车上乘客数量

//此处代码省略

}

void getOnPassenger(Passenger aPassenger ){ //乘客上车

//此处代码省略

}

void run(){ //开车

if((3) ){ System.out.println("司机尚未上车!"); return;}

//此处代码省略

}

public static void main(String args[]){

Driver driver = new Driver("第五路公交车司机");

Car car = new Car((4) );

for (int index = 0 ; index < MAX_PASSENGERS; index ++)

car.getOnPassenger((5) Passenger());

car.run();

}

}

点击查看答案
第8题
阅读下列说明、图和Java代码,填补空缺。[说明] 已知对某载客车辆(Car)进行类建模,如图13-2所示,其

阅读下列说明、图和Java代码,填补空缺。

[说明]

已知对某载客车辆(Car)进行类建模,如图13-2所示,其中类Engine表示发动机引擎,类Wheel表示车轮,类Body表示车身,类Driver表示司机,类Passenger表示乘客。

[Java代码]

class Body{ //此处代码省略 }; //车身类

class Passenger{ //此处代码省略 }; //乘客类

class Wheel{ //此处代码省略 }; //车轮类

class Driver{ //司机类

public String name; //表示第几路公交车司机

public Driver(String driverName){name=driverName; }

//构造函数

};

class Engine{ //引擎类

public String engineNo; //引擎编号

public Engine(String engineNo){this.engineNo=engineNo; }

//构造函数

};

public class Car{ //汽车类

static final int (1) =7; //定义最多载客数

static final int MAX_WHEELS=5; //定义最多轮胎数

protected Engine engine;

protected Driver driver;

protected Body body=new Body();

protected Wheel[]wheels;

protected Passenger[]passengers;

public Car(Driver driver){ //构造函数

(2) .driver=driver;

engine=new Engine("TX6536型号引擎");

wheels = new Wheel[MAX_WHEELS];

passengers=new Passenger[MAX_PASSENGERS];

for(int index=0; index<MAX_WHEELS; index++){

wheels[index]=new Wheel();

}

for(int index=0; index<MAX_PASSENGERS; index++){

passengers[index]=null;

}

}

int getPassengerNumber(){ //获取车上乘客数量

//此处代码省略

}

void getOnPassenger(Passenger aPassenger ){

//乘客上车

//此处代码省略

}

void run(){ //开车

if((3) )(System.out.printin("司机尚未上车!"); return; }

//此处代码省略

}

public static void main(String args[]){

Driver driver=new Driver("第五路公交车司机");

Car car=new Car((4) );

for(int index=0; index <MAX_PASSENGERS; index++)

car.getOnPassenger((5) Passenger());

car.run();

}

}

点击查看答案
第9题
阅读下列说明、图和Java代码,将应填入(n)处的字句写在对应栏内。【说明】 已知对某载客车辆(Car)进行

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

【说明】

已知对某载客车辆(Car)进行类建模,如图7-1所示,其中类Engine表示发动机引擎,类Wheel表示车轮,类Body表示车身,类Driver表示司机,类Passenger表示乘客。

【Java代码】

class Body{ //此处代码省略 ); //车身类

class Passenger{ //此处代码省略 )/ //乘客类

class Wheel{ //此处代码省略 ); //车轮类

class Driver{ //司机类

public String name; //表示第几路公交车司机

public Driver(String driverName){name = driverName/) //构造函数

};

class Engine{//引擎类

public String engineNo;//引擎编号

public Engine(String engineNo){this.engineNo=engineNo;)//构造函数

};

public class Car{//汽车类

static final int(1)=7; //定义最多载客数

static final int MAX WHEELS =5; //定义最多轮胎数

protected Engine engine;

protected Driver driver;

protected Body body=new Body();

protected Wheel[] wheels;

protected Passenger[]passengers;

public Car(Driver driver){ //构造函数

(2).driver=driver;

engine=new Engine("TX6536型号引擎");

wheels=new Wheel[MAX WHEELS];

passengers=new Passenger[MAX_PASSENGERS];

for(int index=0;index<MAX_WHEELS;index++){

wheels[index]=new Wheel();

}

for(int index=0;index<MAX_PASSENGERS;index++){

passengers[index]=null;

}

}

int getPassengerNumber(){//获取车上乘客数量

//此处代码省略

}

void getOnPassenger(Passenger aPassenger){//乘客上车

//此处代码省略

}

void run(){ //开车

if((3)){System.out.println("司机尚未上车!");return;}

//此处代码省略

}

public static void main(String args[]){

Driver driver=new Driver("第五路公交车司机");

Car car=new Car((4));

for (int index = 0 ; index < MAX_PASSENGERS; index ++)

car.getOnPassenger((5) Passenger());

car.run();

}

}

点击查看答案
第10题
A.<>ANYB.=ANYC.<>ALLD.=ALL

A.<>ANY

B.=ANY

C.<>ALL

D.=ALL

点击查看答案
第11题
Definitions and forms of B/L are the same all over the world.()

点击查看答案
退出 登录/注册
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改