When a fire( )at the National Exhibition, at least ten priceless paintings were completely destroyed.A. broke offB. broke outC. broke downD. broke up

题目

When a fire( )at the National Exhibition, at least ten priceless paintings were completely destroyed.

A. broke off

B. broke out

C. broke down

D. broke up


相似考题
参考答案和解析
正确答案:B
更多“When a fire( )at the National Exhibition, at least ten priceless paintings were comp ”相关问题
  • 第1题:

    Such remarks as WITHOUT RESPONSIBILITY FOR DAMAGE OR SHORTAGE will be considered ______ by a court.

    A.valuable

    B.invaluable

    C.valueless

    D.priceless


    正确答案:C

  • 第2题:

    Janet as well as the other young people who ____ sent abroad by government ___ brought up in the small town.

    A. was;was
    B. was;were
    C. were ;were
    D. were ;was

    答案:D
    解析:
    引出定语从句的关系代词作从句的主语,而它又前指复数名词“people”,所以考虑到主谓一致谓语动词用“were”。一个名词后有“as well as”引出的短语时,单复数仍然以那个名词本身的单复数确定。此处主句主语是“Janet",单数第三人称,所以谓语用“was”。故选D。

  • 第3题:

    若TEN为符号常数。判断指令MOV AX,TEN[SI]的正确性。()


    错误

  • 第4题:

    I was most surprised to hear Susan's marriage.

    A: very
    B: really
    C: more
    D: least

    答案:A
    解析:
    句意:苏珊结婚的消息让我很吃惊。四个选项中,B . really的意思是“真正地”;C. more的意思是“更多的”,在形容词前可表示比较级;D. least的意思是“最小的、最少的”,是littie的最高级;A. very的意思是“很、非常”,题目中画线部分most的用法很多,放在形容词前与定冠词连用表示形容词的最高级,如不加定冠词表示“很、非常”的意思,本题属于第二种情况,因此A选项符合题意。

  • 第5题:

    Janet as well as the other young people who__________sent abroad by the government
    __________brought up in the small town.

    A.was:was
    B.was;were
    C.were;were
    D.were;was

    答案:D
    解析:
    引出定语从句的关系代词作从句的主语,而它又前指复数名词people,所以考虑到主谓一致谓语动词用were。一个名词后有as well as引出的短语时.单复数仍然以那个名词本身的单复数确定。此处主句主语是Janet,单数第三人称,所以谓语用was。故选D。

  • 第6题:

    对于以下代码,编译器会生成几个函数模板的实例? template <typename S, typename T> int comp(S s, T t) { // do something return 0; } int main(){ comp(1, 8); comp(1.0, 8); comp("Hello", "World"); comp(1.0, 8.0); comp(4.0, 2); }

    A.1

    B.2

    C.3

    D.4


    编译器会根据情况,可能会为结构体生成多个初始化器,宗旨是:保证所有成员都有初始值。