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

题目内容 (请给出正确答案)
单选题
The owner of a car is no longer forced to rely on public transportation and is therefore, not _____ to work locally.
A

compelled

B

obliged

C

restricted

D

repelled


参考答案

参考解析
解析:
句意:车主不再被迫依赖公共交通,因此,也不再被限制在本区域工作。既然车主自己有了车,不再被迫要依赖公共交通,自然就不必受限制非得在当地工作了。故restricted受约束,受限制符合句意。compelled和obliged都含有“迫使”的意思,但却均不符合该句的逻辑关系,repelled被击退,被抵制,被拒绝,也不符合句意。
更多 “单选题The owner of a car is no longer forced to rely on public transportation and is therefore, not _____ to work locally.A compelledB obligedC restrictedD repelled” 相关考题
考题 Which of the following was NOT mentioned as a reason for the demonstration?A. Public transportation.B. Public peril.C. Pollution.D. Disposal of wastes.

考题 In Changsha, although there is a good public transport system,()private car is still becoming() popular means of transportation. A、不填; theB、he; aC、the; theD、a; 不填

考题 Grabbing Weinstein ______the jaw,the attacker told her he had a gun and forced her into her car.A. withB. toC. inD. by

考题 They each ( )a proud owner of a private car. A、wants to beB、is wanting to becomeC、wants to becomeD、want to be

考题 Motor vehicles powered by the internal combustion engines are responsible for over 80 percent of the deadly carbon monoxide as well as the cancer-causing substances in the air. Eighty-nine percent of the vehicles on the road in Massachusetts are privately owned and are often operated with only one person in the car. If people would use public transportation instead of their cars, air pollution levels could be significantly lowered. Thirty percent of the land in downtown Boston is devoted to cars. Where there are garages, there could be gardens. Where there are highways, there should be homes and places to work and play. Studies show that people today show a greater hearing loss with age than ever before. Much of this is due to car-horns, loud engines and general traffic noise.The cost of a personal car is high to the individual. The average person pays about $2,000 per car per year in gasoline, insurance, taxes, and maintenance. But for society as a whole, personal cars are a luxury we cannot afford. We pay in death from auto accidents, in poor health from air pollution, in loss of hearing from noise pollution, and in the destruction of our cities by the ever-increasing number of highways.1、It is ____ that are the main cause of the air pollution in Boston.A、vehicles in generalB、the public transportation systemsC、carbon monoxidesD、personal motor vehicles2、The writer’s purpose in writing this article is to _____.A、remind people of the danger of air pollutionB、warn people of the danger of accidentsC、urge people to use private cars as less as possibleD、ask the Boston government to build more homes and gardens3、According to the last paragraph, ______.A、the cost of personal cars is high to the individuals but not to the societyB、an average car costs about $2,000 inBostonC、personal cars are so expensive that most people cannot affordD、society as a whole suffers much from the ever-increasing number of cars4、It is implied but not stated that ______.A、garages, highways and parking areas occupy nearly one third of the total Boston downtown area.B、because of highways, people in Boston have no more homes and places to live, work and play.C、C garages have replaced most of the gardens in BostonD、Boston is the most seriously polluted city in the U.S.5、The best title for this passage is “ ______.”A、Air Pollution in BostonB、More Homes, More Plays for PeopleC、Cars Are Too ExpensiveD、Public Transportation, A Solution to Air Pollution

考题 若已定义了类Vehicle,则下列派生类定义中,错误的是A.class Car:Vehicle{/*类体略*/);B.class Car:public Car{/*类体略*/);C.class Car:public Vehicle{/*类体略*/);D.class Car:virtual public Vehicle{/*类体略*/);

考题 Passage Two(26~30) Taiwan police cannot decide whether to treat it as an extremely clever act of stealing or an even cleverer cheat (诈骗). Either way, it could be the perfect crime (犯罪), because the criminals are birds-horning pigeons!The crime begins with a telephone message to the owner of a stolen car: if you want the car back, pay up then. The car owner is directed to a park, told where to find a bird cage and how to attach money to the neck of the pigeon inside. Carrying the money in a tiny bag, the pigeon flies off。There have been at least four such pigeon pick-ups in Changwa. What at first seemed like the work of a clever stay-at-home car thief, however, may in fact be the work of an even lazier and more inventive criminal mind-one that avoids (避免)not only collecting money but going out to steal the car in the first place. Police officer Chen says that the criminal probably has played a double trick: he gets money for things he cannot possibly return. Instead of stealing cars, he lets someone else do it and then waits for the car-owner to place an ad (启事) in the newspaper asking for help。The theory is supported by the fact that, so far, none of the stolen cars have been returned. Also, the amount of money demanded-under 3,000 Taiwanese dollars-seems too little for a car worth many times more。Demands for pigeon-delivered money stopped as soon as the press reported the story. And even if they start again, Chen holds little hope of catching the criminal. “We have more important things to do,” he said。第26题:After the car owner received a phone call, he 。A. went to a certain pigeon and put some money in the bag it carriedB. gave the money to the thief and had his car back in a parkC. sent some money to the thief by mailD. told the press about it

考题 Our public transportation is not sufficient for the need of the people in our major cities.A:additional B:efficient C:excessive D:adequate

考题 Our public transportation is not sufficient for the need of the people in our major cities.A:additional B:efficient C:excessive D:adequate

考题 Many()shops will be forced to close if the new supermarket is built.A、localB、broadC、generalD、public

考题 下面哪一个是正确的类的声明?()A、public void HH{…}B、public class Move(){…}C、public class void number{}D、public class Car{…}

考题 11. abstract class Vehicle { public int speed() { return 0; } }  12. class Car extends Vehicle { public int speed() { return 60; } }  13. class RaceCar extends Car { public int speed() { return 150; }}  ......  21. RaceCar racer = new RaceCar();  22. Car car = new RaceCar();  23. Vehicle vehicle = new RaceCar();  24. System.out.println(racer.speed() + “, „ + car.speed()  25. + “, “+ vehicle.speed());  What is the result?() A、 0, 0,0B、 150, 60, 0C、 Compilation fails.D、 150, 150, 150E、 An exception is thrown at runtime.

考题 public class Car {  private int wheelCount;  private String vin;  public Car(String vin) {  this.vin = vin;  this.wheelCount = 4;  }  public String drive() {  return “zoom-zoom”;  }  public String getInfo() {  return “VIN: “+ vin + “wheels: “+ wheelCount;  }  }  And:  public class MeGo extends Car {  public MeGo(String vin) {  this.wheelCount = 3;  }  }  What two must the programmer do to correct the compilation errors?()A、 insert a call to this() in the Car constructorB、 insert a call to this() in the MeGo constructorC、 insert a call to super() in the MeGo constructorD、 insert a call to super(vin) in the MeGo constructorE、 change the wheelCount variable in Car to protectedF、 change line 3 in the MeGo class to super.wheelCount = 3;

考题 单选题The master’s authority to act in the interests of the cargo owner is part of his general authority as servant of the Shipowner,and therefore()will be liable if the master abuses his powers.A the ChartererB the ShipownerC the shipperD the cargo owner

考题 单选题Night-shift workers are those who _____.A have to rely on their internal clockB need to re-adjust their clockC fall asleep late at nightD have to work at night

考题 单选题This passage is written from the point of view of ______.A a man running for public officeB an underpaid farm workerC a member of the clergyD an owner of a large farmE a farm animal

考题 单选题People try to avoid public transportation delays by using their own cars, and this_______ creates further problems.A in shortB in caseC in doubtD in turn

考题 问答题Practice 20Directions: For this part, you are allowed 30 minutes to write a composition of no less than 150 words on the topic: Why I Want to Buy a Car. Study the following outline carefully and write your composition on the COMPOSITION SHEET.Outline:1. Owning a car has become a common desire for most young and middle-aged people;2. The advantages and disadvantages of having a private car;3. Your suggestions on how to improve the sales and use of private cars and the public transportation in big cities.

考题 单选题How did Mr. Baker get to work?A By train and by car.B Just by car.C On foot.

考题 单选题The Lancaster case shows that employees have the right to get compensation if they ______.A are given work that they are unable to doB suffer mental injury caused by their workC are forced to do work that they don’t likeD feel isolated, let down and extremely anxious

考题 单选题11. abstract class Vehicle { public int speed() { return 0; } }  12. class Car extends Vehicle { public int speed() { return 60; } }  13. class RaceCar extends Car { public int speed() { return 150; }}  ......  21. RaceCar racer = new RaceCar();  22. Car car = new RaceCar();  23. Vehicle vehicle = new RaceCar();  24. System.out.println(racer.speed() + “, „ + car.speed()  25. + “, “+ vehicle.speed());  What is the result?()A  0, 0,0B  150, 60, 0C  Compilation fails.D  150, 150, 150E  An exception is thrown at runtime.

考题 单选题Unlike Jim, I go to work by foot instead of by car every morning.A Unlike JimB to workC by footD by car

考题 单选题A Regular driver training.B Improved highway design.C Stricter traffic regulations.D Better public transportation.

考题 单选题According to the passage, Los Angeles is a city where _____.A there is no public transportation systemB more money is spent on highways for carsC more money is spent on public transportation systemsD public transportation is more developed than in other cities

考题 单选题以public修饰的类如:public class Car{…} 则Car()A 可被其它程序包中的类使用B 仅能被本程序包中的类使用C 不能被任意其它类使用D 不能被其它类继承

考题 单选题If you work under a car when repairing it, you often get very _____.A waxyB slipperyC stickyD greasy

考题 单选题The public transportation is very convenient in that big city, so there _____ be any difficulty in traveling around.A mustn’tB wouldn’tC shouldn’tD needn’t