网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
The taxi driver always reminds passengers to()their belongings when they leave the car.
A

keep 

B

catch 

C

hold

D

take


参考答案

参考解析
解析: 此题重点考查常用动词的词义辨析。keep意为“保持,保存,履行”;catch意为“抓住,赶上,领会”;hold意为“握住,担任,认为”;take意为“拿走,带走等”。根据题意:出租车司机时常提醒乘客下车时带走自己的物品,由此可以确定正确答案为D项。
更多 “单选题The taxi driver always reminds passengers to()their belongings when they leave the car.A keepB catchC holdD take” 相关考题
考题 A)阅读下面的短文,判断短文后面的句子是否符合短文内容。符合的写(A),不符合的写(B)。(10分)It was a cold night. The taxi driver didn’t take even one passenger(乘客) all day. When he went by the railway station, he saw a young man coming out with two bags in his hands. So he drove to him and asked, “Where are you going,sir?”“To the Red Hotel,” the young man answered. When the taxi driver heard this, he didn’t feel happy any more. The young man would give him only three dollars because the hotel was near the railway station. But suddenly, he had an idea. He took the young man through many streets of the big city.After a long time, they arrived at the hotel. “Here we are! You should pay me fifteen dollars, please,” the taxi driver said to the young man. “What? Fifteen dollars! Do you think I’m a fool? Only last week, I took a taxi from the railway station to this hotel and I only gave the driver thirteen dollars. I know how much I have to pay for the trip.” 21.The driver was not happy before he saw the young man.

考题 Maybe the taxi driver got thirteen dollars at last.

考题 When he caught a ______ of his girlfriend in the rain, Jack asked the taxi driver to stop to pick her up. A. glanceB. glareC. glimpseD. stare

考题 The passengers can get to the centre of the city by all the transports except .(A) a taxi(B) by bus(C) by coach service(D) by tube

考题 The announcement is mainly about .(A) the terminal building at the airport(B) the transportation in the centre of Sydney(C) the departure taxi(D) the service the airport can provide for the passengers

考题 Who divide after duret into the river to save the little girl? ( )A. David AndersonB. a passer-byC. his girlfriendD. a taxi driver.

考题 Strayer discourages drivers from talking about business on cell phones while driving because_________.A.they tend to forget the details of a conversationB. both the driver and his agent happen to be drivingC. it might not be good for the driver's memoryD. the other passengers would overhear the conversation

考题 A bus driver is responsible()the safety of his passengers.A. inB. forC. to

考题 The bus driver is _____for the passengers’ safety. A.boundenB.answerableC.responsibleD.accountable

考题 Taxi driver: Here you are, sir. Queens Hotel.Passenger: How much is it?Taxi driver: Three dollars and seventy-five cents.Passenger: Here is four dollars. _____________.A: It ’s not necessary to give me the coinsB: Don’t giv e me the restC: Keep the changeD: I give up the pocket money

考题 It is reported that two cars (_______) into each other this morning on the highway, killing both driver and two passengers. A. crawledB.crouchedC.pressedD.crashed

考题 阅读下列说明、图和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();}}

考题 阅读下列说明、图和C++代码,填补空缺。[说明]已知对某载客车辆(Car)进行类建模,如图12-2所示,其中类Engine表示发动机引擎,类Wheel表示车轮,类Body表示车身,类Driver表示司机,类Passenger表示乘客。const int __________ =7; //定义最多载客数const int MAX_WHEELS=5; //定义最多轮胎数class Body{ //此处代码省略 ); //车身类class Passenger{ //此处代码省略}; //乘客类Class Wheel{ //此处代码省略}; //车轮类Class Driver{ //司机类public:string name; //表示第几路公交车司机Driver(string driverName):marne( __________ ){}; //构造函数};class Engine{ //引擎类public:string engineNo; //引擎编号Engine(string engineNo){ __________ ->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 __________ ;}int getPassengerNumber( ){ //获取车上乘客数量//此处代码省略}void getonpassenger(Passenger *apassenger ){//乘客上车//此处代码省略}void run( ){ //开车if(driver==NULL){cout<< "司机尚未上车!"; return; }//此处代码省略}};void main( ){Driver driver("第五路公交车司机");Car car( __________ );Passenger passengers[MAX_PASSENGERS];for(int index=0; index<MAX_PASSENGERS; index++)//乘客上车处理car. getOnPasSenger(passengers[index]);car. run( );}

考题 试题五(共 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();}

考题 For safety reasons,when assistance towing ______.A.the disabled vessel should be towed to the nearest portB.the disabled vessel should be inspected for flammable gasesC.passengers should always be removed from the disabled vesselD.personnel on the disabled vessel should don PFD's

考题 共用题干 第一篇A recent study,published in last week's Journal of American Medical Association,offers a picture of how risky it is to get a lift from a teenage driver. Indeed,a 16-year-old driver with three or more passengers is three times as likely to have a fatal accident as a teenager driving alone,by contrast,the risk of death for drivers between 30 and 59 decreases with. each additional passenger.The author also found that the death rates for teenage drivers increased dramatically after 10 pm,and especially after midnight.With passengers in the car,the driver was even more likely to die in a late-night accident.Robert Foss,a scientist at the University of North Carolina Highway safety Research Center, says the higher death rates for teenage drivers,have less to do with"really stupid behavior" than with just a lack of driving experience."The basic issue,"he says,"is that adults who are responsible for issuing licenses fail to recognize how complex and skilled a task driving is."Both he and the author of the study believe that the way to mitigate(使······缓解)the problem is to have states institute so-called graduated licensing systems,in which getting a license is a multistage process.A graduated license requires that a teenager first prove himself capable of driving in the presence of an adult,followed by a period of driving with passenger restrictions,before graduating to full driving privileges.Graduate licensing systems have reduced teenage driver crashes,according to recent studies. About half of the states now have some sort of graduated licensing system in place,but only 10 of those states have restrictions on passengers. California is the strictest,with a novice(新手)driver prohibited from carrying any passenger under 20(without the presence of an adult over 25)for the first six months.A graduated license is issued to a driver who________.A:is at least a middle school graduateB:has learned driving at a driving schoolC:gains full driving rights step by stepD:has a driving experience long enough

考题 共用题干 第一篇A recent study,published in last week's Journal of American Medical Association,offers a picture of how risky it is to get a lift from a teenage driver. Indeed,a 16-year-old driver with three or more passengers is three times as likely to have a fatal accident as a teenager driving alone,by contrast,the risk of death for drivers between 30 and 59 decreases with. each additional passenger.The author also found that the death rates for teenage drivers increased dramatically after 10 pm,and especially after midnight.With passengers in the car,the driver was even more likely to die in a late-night accident.Robert Foss,a scientist at the University of North Carolina Highway safety Research Center, says the higher death rates for teenage drivers,have less to do with"really stupid behavior" than with just a lack of driving experience."The basic issue,"he says,"is that adults who are responsible for issuing licenses fail to recognize how complex and skilled a task driving is."Both he and the author of the study believe that the way to mitigate(使······缓解)the problem is to have states institute so-called graduated licensing systems,in which getting a license is a multistage process.A graduated license requires that a teenager first prove himself capable of driving in the presence of an adult,followed by a period of driving with passenger restrictions,before graduating to full driving privileges.Graduate licensing systems have reduced teenage driver crashes,according to recent studies. About half of the states now have some sort of graduated licensing system in place,but only 10 of those states have restrictions on passengers. California is the strictest,with a novice(新手)driver prohibited from carrying any passenger under 20(without the presence of an adult over 25)for the first six months.Which of the following situations is most dangerous according to the passage?A:Adults giving a lift to teenagers on the highway after 10 pm.B:A teenager driving after midnight with passengers in the car.C:Adults driving with three or more teenage passengers late at midnight.D:A teenager getting a lift from a stranger on the highway at midnight.

考题 The taxi driver always reminds passengers to()their belongings when they leave the car.AkeepBcatchCholdDtake

考题 GTC-1000系统柜机内有四块公共通道板(Taxi)即识别计算机(REC)两块Taxi1#、Taxi2#空间转换计算机TaxiST0、TaxiST1其中跳线及开关设置:()A、Taxi1#与其它三块不同B、Taxi1#、Taxi2#与其它两块不同C、Taxi2#与其它三块不同D、四块板均不同

考题 单选题According to Juliet, what was the most difficult about becoming a taxi driver?A The right sense of direction.B The sense of judgment.C The skill of maneuvering.D The size of vehicles.

考题 单选题INTERVIEW 1  Questions 1 to 5 are based on an interview. At the end of the interview you will be given 10 seconds to answer each of the following five questions.   Now listen to the interview. Juliet became a taxi driver becauseA she owned a car.B she drove well.C she liked drivers’ uniforms.D it was her childhood dream.

考题 单选题What prevents Jack, an experienced taxi driver, working for Capes Taxi?A Unable to speak a foreign language.B Punished for speeding and wrong parking.C Not having college education.

考题 单选题While taking a taxi in Finland, ______.A a passenger can go anywhere without having to pay the driverB a passenger pays two US dollars for a taxi rideC a passenger can never be turned down by the taxi driver wherever he wants to goD a passenger needs to provide good faith demonstration before they leave without paying

考题 单选题I have kept that portrait ______ I can see it every day , as it always reminds me of my university days in London.A whichB whereC whetherD into

考题 单选题The driver_____the passengers off at the supermarket and then went to the next stop.A fellB sankC droppedD stepped

考题 单选题The taxi driver always reminds passengers to()their belongings when they leave the car.A keepB catchC holdD take

考题 单选题On May 22, a Han taxi driver ______ an old lady to the hospital as soon as he could in Xinjiang.A sentB sendsC is sendingD has sent

考题 单选题I have kept the portrait ____ I can see it every day as it always reminds me of my university days.A whichB whereC whetherD when