更多“It' high time that we______(do)something to stop pollution.”相关问题
  • 第1题:

    The following is a thing that the teacher often do in a language classroom. Please decide what role the teacher is playing this activity: the teacher gives students 2minutes to skim a text, and when time is up, he/she asks students to stop and answer some questions ________________.

    :A.prompter

    B.organizer

    C.controller

    D.participant


    正确答案:C

  • 第2题:

    Stop ______, everyone. I have something important to tell you.

    A: talk

    B: to talk

    C: talking

    D: talked


    参考答案:C

  • 第3题:

    We must do something to stop the pollution, and ______ we must make all the people realize how serious the problem is.

    A.after all

    B.above all

    C.in all

    D.at all


    参考答案:B

  • 第4题:

    We feel it is high time that the Government ______ something to check the inflation.

    A.diD.B.do
    C.will do
    D.would do

    答案:A
    解析:
    本题考查虚拟语气

    A选项,句意:我们认为该到政府采取措施抑制通货膨胀的时候了。it is high time that后面接虚拟语气,时态用一般过去时,意为“该到…时候了”。

    B,选项,一般现在时,不符合句意以及固定搭配,故排除。

    C,选项,与题意不符,故排除。

    D,选项,与题意不符,故排除。

    故正确答案为A选项。

  • 第5题:

    It is high time we()something to stop road accidents.

    Adid 

    Bare doing 

    Cwill do 

    Ddo


    A

  • 第6题:

    It is high time that we()working to take a break.

    • A、should stop   
    • B、would stop   
    • C、stopped   
    • D、stop

    正确答案:C

  • 第7题:

    What kind of products do the air carriers deliver? ()

    • A、The high value     
    • B、Low density or weight
    • C、A and B           
    • D、Shortest time to transport

    正确答案:C

  • 第8题:

    public class Parent {  public int addValue( int a, int b) {     int s;     s = a+b;     return s;     }     }  class Child extends Parent {  }  Which methods can be added into class Child?()   

    • A、 int addValue( int a, int b ){// do something...}
    • B、 public void addValue (){// do something...}
    • C、 public int addValue( int a ){// do something...}
    • D、 public int addValue( int a, int b )throws MyException {//do something...}

    正确答案:B,C

  • 第9题:

    单选题
    What does the word “override” mean in the first paragraph?
    A

    To prevail over.

    B

    To ride over or across.

    C

    To stop a machine doing something.

    D

    Not to notice something.


    正确答案: A
    解析:
    词义理解题。文章中override所在句子为:“太阳黑子就如同行星般巨大的飓风一样,吞没很多物质,和它们喷涌出的一样多,并暂时……磁场规律,”结合上下文可以推测出override是“压倒,超越”的意思,所以选A。

  • 第10题:

    单选题
    what kind of products do the air carriers deliver? ()
    A

    The high value

    B

    Low density or weight

    C

    A and B

    D

    Shortest time to transport


    正确答案: D
    解析: 暂无解析

  • 第11题:

    单选题
    Stop dwelling on your problems and do something about them!
    A

    abiding      

    B

    lingering      

    C

    expatiating    

    D

    expressing


    正确答案: A
    解析: 句意:别在那光说这些问题,做点实事!dwell on详述。abide遵守,容忍。linger逗留。expatiate详述。express表达。

  • 第12题:

    单选题
    interface Data { public void load(); }  abstract class Info { public abstract void load(); }  Which class correctly uses the Data interface and Info class?()
    A

     public class Employee extends Info implements Data { public void load() { /*do something*/ } }

    B

     public class Employee implements Info extends Data { public void load() { /*do something*/ } }

    C

     public class Employee extends Info implements Data { public void load() { /*do something */ } public void Info.load() { /*do something*/ } }

    D

     public class Employee implements Info extends Data { public void Data.load() { /*dsomething */ } public void load() { /*do something */ } }

    E

     public class Employee implements Info extends Data { public void load() { /*do something */ } public void Info.load(){ /*do something*/ } }

    F

     public class Employee extends Info implements Data{ public void Data.load() { /*do something*/ } public void Info.load() { /*do something*/ } }


    正确答案: B
    解析: 暂无解析

  • 第13题:

    We feel it is high time that the Government__something to check the inflation.

    A.did

    B.do

    C.should do

    D.would do


    正确答案: A

  • 第14题:

    It's high time you ______.

    A.stop smoking

    B.stopped smoking

    C.stop to smoke

    D.will stop to smoke


    参考答案:B

  • 第15题:

    此处,Something 类的文件名叫OtherThing.java

    class Something {

    private static void main(String[] something_to_do) {

    System.out.println("Do something ...");

    }

    }

    这个好像很明显。


    正确答案:

     

    正确。从来没有人说过Java 的Class 名字必须和其文件名相同。但public class 的名字

    必须和文件名相同。

  • 第16题:

    Which of the following is true of Reagan?__________

    A.He finished high school and got his diploma
    B.His mother had died and he lived alone
    C.He had to do work to support his families
    D.He was still a student with a part-time job

    答案:C
    解析:
    文章第三段中“Reagan also shared that his mother had passed away and he was left to carefor his two younger sisters.”可知,里根不得不找工作照顾他的家庭。故选C。

  • 第17题:

    It is high time we()something to stop road accidents.

    • A、did 
    • B、are doing 
    • C、will do 
    • D、do

    正确答案:A

  • 第18题:

    interface Data { public void load(); }  abstract class Info { public abstract void load(); }  Which class correctly uses the Data interface and Info class?() 

    • A、 public class Employee extends Info implements Data { public void load() { /*do something*/ } }
    • B、 public class Employee implements Info extends Data { public void load() { /*do something*/ } }
    • C、 public class Employee extends Info implements Data { public void load() { /*do something */ } public void Info.load() { /*do something*/ } }
    • D、 public class Employee implements Info extends Data { public void Data.load() { /*dsomething */ } public void load() { /*do something */ } }
    • E、 public class Employee implements Info extends Data { public void load() { /*do something */ } public void Info.load(){ /*do something*/ } }
    • F、 public class Employee extends Info implements Data{ public void Data.load() { /*do something*/ } public void Info.load() { /*do something*/ } }

    正确答案:A

  • 第19题:

    A systems administrator has a high performance server with a file share full of data that has not been used in a long time, but is still important and might be used in the future. Which of the following should they do to reclaim the space off the high performance server?()

    • A、Audit the data
    • B、Delete the data
    • C、Back up the data
    • D、Archive the data

    正确答案:D

  • 第20题:

    单选题
    It is high time we()something to stop road accidents.
    A

    did 

    B

    are doing 

    C

    will do 

    D

    do


    正确答案: A
    解析: 暂无解析

  • 第21题:

    单选题
    Do you often wait for a long time()the bus stop?
    A

    in

    B

    on

    C

    at

    D

    under


    正确答案: B
    解析: 暂无解析

  • 第22题:

    单选题
    In context, which of the following is the best revision of sentence 3 (reproduced below)?That thing that makes them want to do it is called an incentive, and what makes them not want to do them would be a disincentive.
    A

    It is an incentive making someone want to do something, and a disincentive making them not want to do it.

    B

    An incentive is what makes someone want to do something, and a disincentive is what makes someone want to avoid doing something.

    C

    Incentives make someone want to do things, but disincentives are the things making them not want to do it.

    D

    People are made to want to do something by incentives, and a disincentive is for not wanting to do it.

    E

    It is incentives that make people want to do something, disincentives on the other hand being what makes people want to avoid doing something.


    正确答案: B
    解析:
    这个句子是明确“incentive,disincentive”的定义。A使用代词it,没有一个清晰地先行词,且使用两个不恰当的分词短语。C的定义冗杂,使用代词it,没有一个明确的先行词。D和E的定语既不符合平行结构也不恰当。只有B的定义最有效最简洁。

  • 第23题:

    单选题
    The Netherlands’ highest rates in Europe of babies dying during or just after birth ______.
    A

    are the reseason why the research was carried out

    B

    have something to do with their high rates of home births

    C

    suggest hospital birth is a better choice

    D

    have changed the government’s attitude towards home birth


    正确答案: D
    解析:
    题目问的是:在欧洲地区,荷兰是婴儿在分娩中或分娩后死亡率最高的国家,下列哪一项符合原文?文章第6段中提到“The research was carried out in the Netherlands after figures showed the country had one of the highest rates in Europe of babies dying during or just after birth.”,由此可知有数据显示这一信息之后,调查在荷兰展开了,二者是因果关系。故选A。