更多“The city centre was wiped out by the bomb.”相关问题
  • 第1题:

    2 John Dixon is the recently appointed Chief of Police for a major city in the UK. He has inherited a major problem in

    that its residents are very concerned with various forms of antisocial behaviour and minor crimes carried out by a

    small number of people, which makes living, working, travelling and socialising in the city centre unpleasant rather

    than life threatening. The city’s residents have recently voted for it being one of the five worst cities in the UK in which

    to live. There is little or no contact between the police and these residents.

    The city is split into a number of police districts, each with its own senior officer in charge. Their focus is on the

    response to emergency calls and solving serious crimes in their district rather than the less urgent crimes affecting

    everyday living in the city. Response times and serious crime solution rates are the traditional measures by which their

    performance is measured and leave them open to criticism of simply reacting to events. There is little sense of being

    part of a city police force and, consequently, little sharing of information and experience between the different districts.

    The failure in policing antisocial behaviour in the city is seen as being largely the result of a shortage of resources.

    There are also important internal and external groups varying in their support or resistance to any necessary change

    in policing strategy. Key players include the mayor of the city anxious to improve the reputation of the city, the city’s

    press, traditionally used to highlighting police failures rather than successes and finally the courts of justice, which

    are reluctant to take on the increased workload that any moves towards reducing antisocial behaviour would produce.

    John is aware of the complexity of the problem he faces in changing the way the city is policed to improve the quality

    of life of its citizens. He has, however, an impressive track record as a change agent in previous appointments and is

    confident that he can bring about the necessary change.

    Required:

    (a) Using change management models where appropriate, provide John with a brief report on the nature of

    change needed in the way the city is policed in order to improve the city’s quality of life. (12 marks)


    正确答案:
    (a) To: John Dixon
    From: Change Management consultant
    Changes to policing and impact on the city’s quality of life
    This is a complex problem involving different stakeholders each of which is looking for different results from the policing
    system. The recognition of the need to change is one of the most difficult parts of the change process. There will be
    considerable commitment to the current ways of doing things reinforced by the ways in which performance is measured. The
    various stakeholders involved will have different perceptions of the problem and the need for change. They will have different
    levels of power and influence and different levels of interest in seeing the change happen. Mendelow’s model for mapping
    may prove useful in understanding how to handle the expectations of the different groups. The key players would clearly be
    the senior officers in charge of the city’s districts who will be responsible for implementing any change in the way the city is
    policed. You will have to decide how to convince these officers that a change to the way they currently do things is needed.
    One suggestion is that they actually get first-hand experience of the conditions being faced by the city’s residents. Another
    group with significant power and interest are the courts because if they refuse to process the cases of antisocial behaviour
    then the whole strategy will fail. However, the interest of the mayor and the media in the reputation the city has gained may
    be used to counter the reluctance of the courts to take on the extra workload.
    One of the most popular models for understanding change and likely resistance to it, is to carry out a forcefield analysis.
    Johnson, Scholes and Whittington argue that such an analysis ‘provides an initial view of change problems that need to be
    tackled, by identifying forces for and against change’. They ask three key questions:
    What aspects of the current situation might aid change in the desired direction, and how might these be reinforced?
    What aspects of the current situation would block such a change, and how can these be overcome?
    What needs to be introduced or developed to aid change?

    Forcefield analysis
    Pushing Resisting
    Residents’ desire for safer city Police commitment to serious crime
    Mayor of city – city’s reputation District focus and not city concern
    John Dixon’s desire for change Traditional performance measures
    Courts fear of increased workload
    Police resources over committed
    Forcefield analysis was first developed by Kurt Lewin and linked to his 3-step model of change where to accomplish desired
    change it is necessary to get the various stakeholders to recognise the need for change and unfreeze the situation. This will
    require you to use some or all of the styles of managing change explained below. One of the real problems is that each
    stakeholder will feel that they have an objective view of the situation. Getting a shared view may be very difficult to achieve
    and require real leadership on your part.
    Once the need to change is agreed there will need to be major changes in the way the city is policed to achieve the desired
    goal of eliminating antisocial behaviour and improving the quality-of-life for the city’s residents. Real change will be needed
    to the way in which police resources are deployed, the systems used to police on a city rather than on a district basis and
    the way results are measured and publicised. There will be a need for ‘quick wins’ to show the potential positive results
    achievable with the new strategy.
    Finally, rewards and sanctions must be put in place to re-enforce the desired state of affairs and prevent behaviours slipping
    back to the previous position. Here you will need to look at how to refreeze the situation and clearly show how the new
    position means that the goals of the city and its stakeholders are really shared.
    There are many available change models for a programme such as this such as the Gemini 4Rs framework and most will
    look to assess the scope of change required and the timeframe. available to achieve it. Undoubtedly, you will require many ofthe skills associated with project management in a major change programme such as this.
    Yours,

  • 第2题:

    —I wish I could. But I’m on my way out. I have to be in the city in an hour.

    —63


    正确答案:E

  • 第3题:

    The police do not allow him to go out of the city without ____.

    A.permit

    B.permission

    C.admit

    D.admission


    参考答案:B

  • 第4题:

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

    [说明]

    本程序使用类来管理员工的通讯地址信息。已知程序的输出为:

    输出记录:5

    姓名:王丽华

    街道地址:中华路15号

    市:襄樊市

    省:湖北省

    邮政编码:430070

    [Java代码]

    public class Employee{

    protected String (1);

    protected String street;

    protected String city;

    protected String prov;

    protected String post;

    protected int no;

    public Empbyee(){}

    public Employee(String name,String street,String city,String prov,String post, (2) ){

    this.name=name;

    this.street=street;

    this.city=city;

    this.prov=prov;

    this.post=post;

    this.no=no;

    }

    public static void main(String[]args){

    Employee emp=new Employee(“王华”,“中华路15号”,“武汉市”,“湖北省”,“430070”,1);

    emp.changeName(“王丽华”);

    (3) (“襄樊市”);

    emp.changeNo(5);

    (4);

    }

    void changeName(String name){this.name=name;}

    void changeStreet(String street){this.street=street;}

    void changeCity(String city){this.city=city;}

    void changeProv(String prov){this.prov=prov;}

    void changeNo(int no){(5);}

    void display(){

    System.out.println(“输出记录:”+this.no);

    System.out.Println(“姓名:”+this.name);

    System.out.println(“街道地址:”+this.street);

    System.out.println(“市:”+this.city);

    System.out.println(“省:”+this.prov);

    System.out.println(“邮政编码:”+this.post);

    }

    }


    正确答案:(1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no
    (1) name (2) int no (3) emp.changeCity (4) emp.display() (5)this.no=no 解析:本程序创建一个employee类,包括姓名、街道地址、市、省、邮政编码和记录号等信息以及若干函数:构造函数employee()初始化每个成员;changname()、……changeno()等用于更改类中各属性的值;display()函数用于打印数据。

  • 第5题:

    The city center was wiped out by the bomb.

    A:destroyed
    B:covered
    C:reduced
    D:moved

    答案:A
    解析:
    本句意思:市中心被炸弹彻底摧毁了。单词destroy意思为“摧毁,毁坏”,和wipe out (彻底摧毁)意思接近。单词cover意思为“覆盖,遮掩”;reduce意思为“减少,下降”;move意思为“移动”。

  • 第6题:

    根据下面资料,回答
    Today, people all over the world are moving out of small villages in the country to go and live in big, noisy cities. They are moving from the peaceful hills, mountains, fields, rivers and streams of the countryside to the busy world of streets, buildings, traffic and crowds. This movement from rural areas to urban areas has been going on for over two hundred years.
    In many countries, the main reason why people come to live in towns and cities is work. After one or two large factories have been built in or near a town, people come to find work, and soon an industrial area begins to grow. There is usually a residential area nearby, where the factory workers can live. The families of these workers need schools, hospitals and shops, so more people come to live in the area to provide these services and a city grows.
    In every major city in the world, there is a business district where the big companies have their main offices. In the United States, this area is usually in the city centre. It is here that you can see the huge skyscraper office blocks. The people who work here often travel a long way to work each day. Many of them live in the suburbs of the city, far away from the industrial area and the city centre. Some suburbs are very pleasant, with nice houses and big gardens. There are usually parks for children to play in and large department stores where you can buy all you need.
    But what is the future of the big cities? Will they continue to get bigger? Perhaps not. Some major cities have actually become smaller in the last ten years, and it is quite possible that one day we will see people moving out of the major cities and back into smaller towns and villages.
    In a residential area, you can see ____________.

    A.rows of houses, schools and shops
    B.many offices and factories
    C.a lot of factories and farms
    D.many houses with offices and factories

    答案:A
    解析:
    细节题。由第二段最后两句“There is usually a residential area nearby,where the factory workers can live.The families of these workers need schools,hospitals and shops,so more people come to live in the area to provide these services and a city grows”可知答案为A。

  • 第7题:

    What can be inferred from Paragraph” __________.

    A.Zone 4 is more crowded than Zone 2
    B.The business centre of London is in Zone l
    C.Hosts dislike travelling to the citv centre
    D.Accommodation in the city centre is not Drovided

    答案:B
    解析:
    根据第三段第一、二句话“Homestays are located in London mainlyin Zones 2,3 and ofthe transpon system.Most hosts do not live in the town centre as much of central London is commercial and notresidential.”可知,寄宿家庭主要在第二、三、四区,大多数房东不住在伦敦市中心,因为市中心是商业区,而非居住区.故选B。

  • 第8题:

    The rubbish should be collected on the poop deck and ()(处理) 25 miles off the shore.

    • A、made up of
    • B、disposed of
    • C、worked out
    • D、wiped out

    正确答案:B

  • 第9题:

    填空题
    In 1901, Dawson City carried out its first census.____

    正确答案: G
    解析:
    根据题干中“1901”和“Dawson City”可定位到G段。本段讲到,1901年,Dawson City实施第一次人口普查,人口下降到九千。故匹配段落为G段。

  • 第10题:

    单选题
    Why does the woman compare human memory to a hard disc drive?    
    A

    Because both can be wiped out by accidents.

    B

    Because both can be trained to work better.

    C

    Because both can be expanded.


    正确答案: B
    解析: 对话中提到like a hard disc drive, our memories can become infected or even wiped out by accidents,意为:像硬盘驱动器一样,我们的记忆也会被感染,甚至也会因意外事故被抹掉,因此A项为正确答案。

  • 第11题:

    单选题
    A disease known as chestnut blight wiped out large numbers of American chestnut trees.
    A

    altered

    B

    penetrated

    C

    devalued

    D

    destroyed


    正确答案: D
    解析:
    句意:一个称为栗疫病的疾病摧毁了大量的美国栗树。wipe out摧毁。destroy破坏。alter改变。penetrate穿透。devalue贬低。

  • 第12题:

    单选题
    Which of the following statements is NOT TRUE?
    A

    Manhattan is the centre of New York City.

    B

    New York City is made up of five parts.

    C

    New York looks like a long finger from the air.

    D

    Manhattan is an island.


    正确答案: A
    解析:
    事实细节题由第四句“From the air its shape looks like a long finger”.可知是Manhattan looks like a long finger from the air,而非New York。由文章第二段一、二、三句可知,A、B、D项均正确。

  • 第13题:

    Passage One

    Valencia is in the east part of Spain. It has a port on the sea, two miles away from the coast. It is the capital of a province that is also named Valencia.

    The city is the market centre for what is produced by the land around the city. Most of the city's money is made from farming. It is also a busy business city with ships, railways, clothes and machine factories.

    Valencia has an old part with white buildings, coloured roofs, and narrow streets. The modern part has long, wide streets and new buildings. Valencia is well known for its parks and gardens. It has many old churches and museums. The University in the centre of the city was built in the 13(上标)th century.

    The city of valencia has been known since the 2(上标)nd century. In the 8(上标)th century it was the capital of Spain. There is also an important city in Venzuela(委内瑞拉)named Valencia.

    36. The main income of the city of Valencia is from its______.

    A. markets

    B. business

    C. factories

    D. farming


    正确答案:D
    36.答案为D  此题为细节题。问题提出瓦伦西亚市的主要收入是什么?从第二段的第二句Most of the city's money is made from farming可以得出答案是D(农业)

  • 第14题:

    Sometimes we feel the need ____ out of the city and take things easy.

    A、to get

    B、to be got

    C、getting

    D、being got


    答案:C

  • 第15题:

    The whole army has been().

    A、wiped up

    B、wiped off

    C、wiped of

    D、wiped out


    参考答案:D

  • 第16题:

    这个c++程序中char city[20]; 的作用是什么 ?

    #include <fstream>

    #include <iostream>

    using namespace std;

    int main()

    {

        fstream inout;

    inout.open("city.txt",ios::out);

    inout<<"Dallas"<<" "<<"tonghua"<<" "<<"长春"<<" " ;

    inout.close();

    inout.open("city.txt",ios::app | ios::out);

    inout<<"罗马"<<" "<<"巴黎"<<" ";

    inout.close();

    char city[20];

    inout.open("city.txt",ios::in);

    while(!inout.eof())

    {inout>>city;

    cout<<city<<" ";

                     } 

                     inout.close();

                     

        system("PAUSE");

        return 0;

    }


     

    定义一个字符型数组city[20],将从文本文件“city.txt”所读取的数据,暂时存在city[20]中,然后通过输出函数cout将数据输出。

     

  • 第17题:

    根据下面资料,回答
    Today, people all over the world are moving out of small villages in the country to go and live in big, noisy cities. They are moving from the peaceful hills, mountains, fields, rivers and streams of the countryside to the busy world of streets, buildings, traffic and crowds. This movement from rural areas to urban areas has been going on for over two hundred years.
    In many countries, the main reason why people come to live in towns and cities is work. After one or two large factories have been built in or near a town, people come to find work, and soon an industrial area begins to grow. There is usually a residential area nearby, where the factory workers can live. The families of these workers need schools, hospitals and shops, so more people come to live in the area to provide these services and a city grows.
    In every major city in the world, there is a business district where the big companies have their main offices. In the United States, this area is usually in the city centre. It is here that you can see the huge skyscraper office blocks. The people who work here often travel a long way to work each day. Many of them live in the suburbs of the city, far away from the industrial area and the city centre. Some suburbs are very pleasant, with nice houses and big gardens. There are usually parks for children to play in and large department stores where you can buy all you need.
    But what is the future of the big cities? Will they continue to get bigger? Perhaps not. Some major cities have actually become smaller in the last ten years, and it is quite possible that one day we will see people moving out of the major cities and back into smaller towns and villages.
    We can easily know that the underlined phrase "urban areas" in the first paragraph means_____________.

    A.areas of the countryside
    B.areas of a town or city
    C.areas near the countryside
    D.areas near a town or city

    答案:B
    解析:
    词义题。由第一段中“…people…are moving…to go and live in big,noisy cities.They are moving…to the busy world…”可判断答案为B。

  • 第18题:

    根据下面资料,回答
    Today, people all over the world are moving out of small villages in the country to go and live in big, noisy cities. They are moving from the peaceful hills, mountains, fields, rivers and streams of the countryside to the busy world of streets, buildings, traffic and crowds. This movement from rural areas to urban areas has been going on for over two hundred years.
    In many countries, the main reason why people come to live in towns and cities is work. After one or two large factories have been built in or near a town, people come to find work, and soon an industrial area begins to grow. There is usually a residential area nearby, where the factory workers can live. The families of these workers need schools, hospitals and shops, so more people come to live in the area to provide these services and a city grows.
    In every major city in the world, there is a business district where the big companies have their main offices. In the United States, this area is usually in the city centre. It is here that you can see the huge skyscraper office blocks. The people who work here often travel a long way to work each day. Many of them live in the suburbs of the city, far away from the industrial area and the city centre. Some suburbs are very pleasant, with nice houses and big gardens. There are usually parks for children to play in and large department stores where you can buy all you need.
    But what is the future of the big cities? Will they continue to get bigger? Perhaps not. Some major cities have actually become smaller in the last ten years, and it is quite possible that one day we will see people moving out of the major cities and back into smaller towns and villages.
    In the United States many people work in the centre of a big city ______________.

    A.while living on the faraway edge of the city
    B.and live there
    C.but live in another city
    D.but live far away out of the city

    答案:A
    解析:
    细节题。根据第三段第四、五两句话“The people who work here often travel a long way to work each day.Many of them live in the suburbs of the city.far away from the industrial area and the city centre”可知A项正确。

  • 第19题:

    共用题干
    The City Planning

    In the past,cities usually grew in a disorderly way because few cities were built according to a plan.In the late 1 800s,the idea of a"beautiful city"came into_______(51).People felt that a city should have wide street,parks,and a civic centre.People_______(52)to realize that cities need to be planned.
    In the first part of the 1900s,cities began to_______(53)zoning laws.Zoning laws say what kind of building can be put up in different parts of a city.A factory cannot be put up on land _______(54)for apartments.Apartments,_______(55),cannot be built on land for houses.
    Meanwhile,cities were growing rapidly and changing almost_______(56).They faced many problems.Sometimes the streets in a city caused traffic_______(57).Sometimes there were not enough schools or hospitals for all the people who needed them. As people moved_______(58)to new areas of the city,older parts of town often became run-down.
    At first,citizens_______(59)groups that tried to solve the problems a city faced.Today, most large cities have city planning board_______(60)part of their city government. On the board are city_______(61)who have special training. Many of them have college_______(62)in city planning. They must know how a city's land can be_______(63)used.They_______(64)new areas of the city and decide how to improve older_______(65).City planing boards help the city meet the needs of all the people who live there.

    _________(64)
    A:put out
    B:lay out
    C:give out
    D:hard out

    答案:B
    解析:
    come into being为固定搭配,意思是“形成、产生”,例如:When did the Great Britain come into being?英国是何时形成的?原文是“美丽城市”的理念应运而生,因此选C。
    根据上下文判断,随着美丽城市理念的诞生,人们开始意识到城市需要被规划。come有“开始”的意思。所以此处选C最合适,其他各项均不合题意。fail失败, incline 和tend都有“倾向于”的意思。
    根据词语的搭配可以知道,原文应该指的是“城市开始通过城市区划法”,三个选项中只有选项A最合适,pass有“通过”的意思,和law“法律”搭配使用正确。
    空缺处需要填的是过去分词引导的定语从句,省略了which be。这里指的是被划分出来建公寓的地区不能盖工厂,zone更合适,意思是“将……划为特殊区域”。
    however表示一种转折的关系。本句意思为“工厂不能建在用于盖公寓的土地上。然而,公窝也不能盖在建造大宅的土地上”。所以选项D符合。
    根据前半部分即城市在快速地发展,可以判断出城市的变化也是很迅速的,选项D正确,意为“突然,很快”,与前面的rapidly呼应。
    traffic jam意思是“交通堵塞”,较之选项B,选项A更符合常理,即城市里的街道会造成交通堵塞。
    本句提到了老地区变得破败不堪,人们应该是搬出旧城区,搬进新的城市地区,所以选择C,后面接的介词to指“搬到……”。
    只有form最适合和后面的group搭配使用。form意为“组成”,例如:The two parties formed a coalition.两个政党组成了联合政府。本句意思是“市民们组成了试图解决城市面临的问题的团体”。
    三个选项中只有as适合,意思是“作为”。句子意思是“大多数的大城市都有了作为城市政府一部分的城市规划委员会”。
    逻辑题。on the board意思是“委员会里”。前面提到大多数城市都有了 city planning board即“城市规划委员会”,那么委员会里必然有城市规划师,所以A正确。
    degree意思是“学历”,后面常接介词in指在某专业方面的学历,原句中还有信号词college,所以选项degree最合适。level水平,qualification资质,height高度。
    best这里是副词,意思是“最好地,最高标准地”,比较carefully (小心地), suitably(合适地)以及cleverly(聪明地),选项B更为合适。原句意思是“这些城市规划师必须知道如何才能以最好的方式使用城市里的土地”。
    lay out为固定搭配,意思是“规划,设计”。例如:When the local governments lay out the car parks, they must estimate the numbers of cars in these districts.当地方政府规划停车场时,他们必须先估计市区里的汽车数量。原文是“他们规划城市的新地区”。
    这里的意思是“他们……决定如何来提升一个老城区”。section除了有 “部分”的意思外还指“(城市等的)地区,(街区等的)地段”。square意为“广场”,division意为“部分”,centers意为“中心”。

  • 第20题:

    问答题
    Oxford  When language learners arrive in Oxford, many ask where the university is, thinking that they will be shown just one building. It’s up to their teachers to explain that Oxford university is made up of a collection of many different colleges and institutions, each with its own history and characteristics.  There are many other surprises that learners discover about the city and its university. Katie Jennings is a social organizer at King’s St Joseph’s Hall in East Oxford, and it is her job to organize activities for learners outside of lesson time. She says many learners are surprised to discover that Oxford is a home to a wide variety of nationalities and ethnic groups, and one of the most popular social events is a night out at one of the town’s Latin American dance clubs. After a day spent learning English and absorbing the ancient atmosphere of the university, learners can samba the night away.  The city also has a thriving Asian community, and the sight of women in saris is as common in Oxford’s streets as academics in gowns and mortarboards. There is also a mouth-watering selection of Asian restaurants serving curries, as well as shops stocked with exotic vegetables and fruits.  The city has attracted such a diverse population not only because of the university, but also because it is an important industrial centre which is known for car manufacturing among other things. In spite of large industrial areas, the old of the city centre has remained surprisingly intact.  Carmel Engin, who teaches at the Lake School, says many learners are surprised to find that the city is free from the usual high-rise modern buildings. “From the centre of Oxford, you can see green hills in the distance, and this will make learners deeply feel that they are in a small, friendly town, but not just another modern metropolis.”  Some learners will be tempted to explore those green hills—Oxford is surrounded by some of the most beautiful countryside in southern England—but, as Engin admits, with so much to do and see in the city, few learners find the time, to explore its surroundings.

    正确答案: 【参考译文】
    牛津 许多初到牛津城的语言学习者会问牛津大学在哪里。他们以为他们将要看到的仅仅是一幢建筑。老师需要向他们解释,牛津大学是由许多不同的学院和学部组成的,每个学院和学部都有各自的历史和特色。
    学生们还会发现这个城市和其中的大学还有许多别的惊奇之处。凯蒂·珍妮丝是东牛津皇家圣约瑟夫学院的社会活动组织者。她的工作就是为学生们组织课外活动。她说许多学生都惊奇地发现牛津竟然聚集了许多不同国籍和种族的人。那儿最流行的一项社交活动就是在城里找一家拉美舞蹈俱乐部泡上一晚。白天学习英文,领略着这所大学古老的氛围,到了晚上便可以跳跳桑巴轻松一下。
    牛津城里还有一个生气勃勃的亚洲侨民团体。在牛津街头,穿着印度纱丽的女子和身穿长袍头戴学位帽的学者一样随处可见。还有很多供应咖喱食品的亚洲餐馆可供选择,真是令人垂涎欲滴。当然还有许多商店出售国外的蔬菜水果。
    这个城市之所以吸引了众多不同背景的人,不仅是因为牛津大学的名望,还因为它是重要的工业中心,其中以汽车工业最负盛名。然而令人惊奇的是,尽管牛津有大片的工业区,但城中心古朴的风格却丝毫未遭破坏。
    雷克学院的教师卡莫尔·恩金说许多学生都惊异地发现牛津城里根本看不到城市中常见的现代化高楼。“从牛津城中心你可以望见远处郁郁葱葱的山丘。这使人们感到自己身处的是一座友善的小镇而非仅仅是又一座现代化的大都市。”
    有些人会忍不住想到山上去探个究竟——牛津的四周围绕着英格兰南部最美的一些乡村——然而正如恩金所言,城里有这么多东西要看,这么多事情要做,几乎没有谁能腾出时间到四郊去做个发现之旅。
    解析: 暂无解析

  • 第21题:

    单选题
    According to the passage, what problem does Sao Paulo have?
    A

    A lot of people don’t have jobs.

    B

    Too many people live in the city centre.

    C

    A lot of people are moving out of the city.

    D

    Too many people travel into the city every day.


    正确答案: C
    解析:
    根据第三段的“Every day, these people travel into the city, and traffic is very heavy.”可知选D。

  • 第22题:

    单选题
    “The city grew outward instead of upward” (Para. 2) means _____.
    A

    the city became more spread out instead of growing taller

    B

    there were fewer small houses than tall buildings

    C

    rapid development took place in the city center

    D

    many tall buildings could be found in the city


    正确答案: D
    解析:
    词语释义题。题目中问“第二段‘The city grew outward instead of upward’是什么意思?”从文章后面的句子“Los Angeles never built many tall apartment buildings. Instead, people live in houses with gardens”可知,洛杉矶很少有高楼大厦,人们一般住在花园式的房子。表明该城市的扩展是向四周而不是向高处的,答案为A。

  • 第23题:

    单选题
    —______is it from the New Town to the old city centre?—Less than 30 minutes by underground.
    A

    How soon

    B

    How often

    C

    How long

    D

    How far


    正确答案: C
    解析:
    句意:—从新镇到以前的市中心有多远?—乘地铁不到30分钟的车程。由回答可知,问题是两地间隔多远。how soon多快。how often多常。how long多长。how far多远。D项符合句意。