【单选题】【消耗次数:1】
22. When a fire ______ at the National Exhibition in London, at least ten priceless paintings were completely destroyed.
broke off
broke out
broke down
broke up
参考答案:
复制
纠错
相关题目
【单选题】 When a fire____ at the National Exhibition in London, at least ten priceless paintings were completely destroyed.
①  broke off
②  broke out
③  broke down
④  broke up
【单选题】 A fire broke out at the school but the teacher were able to lead the ___________ children to safety.
①  frightened
②  frightening
③  frighten
④  fright
【单选题】 13. A fire broke out at the school but the teacher were able to lead the ___________ children to safety.
①  frightened
②  frightening
③  frighten
④  fright
【单选题】 The reason _____ he was late for the meeting is _____ his car broke down on the road.
①  why; that
②  why; because
③  that; that
④  for which; because
【单选题】 When Ann broke the dish she tried to put the ____ back together.
①  fragments
②  pieces
③  bits
④  slices
【单选题】 When Ann broke the dish she tried to put the _____back together.
①  fragments
②  pieces
③  bits
④  slices
【单选题】 The reason __he was absent from the meeting was _his car broke down on the way.
①  that; because
②  why; that
③  that; that
④  for; that
【单选题】 I fell and broke my leg when I_______riding my bike.
①  /
②  is
③  was
【判断题】 A: I broke the vase accidentally. B: Not at all.
①  正确
②  错误
【单选题】 -I’m sorry I broke your mirror.-Oh, really? ____.
①  It’s OK with me
②  It doesnt matter
③  Don’t be sorry
④  I don’t care
随机题目
【单选题】 若有变量说明:chars,s1[20];执行语句:s=student;s1=s;正确的叙述是:()。
①  二个语句都不正确
②  s所指向的字符串和s1的值都是student
③  第一个语句正确,而第二个语句不正确
④  第二个语句正确,而第一个语句不正确
【单选题】 若有语句:inta=4,p=&a;,下面均代表地址的一组选项是()
①  a,p,*a
②  *a,a,p
③  a,p,*p
④  *p,p,a
【单选题】 已知字母A的ASCII码为十进制数65,且c2为字符型,则执行语句c2=’A’+’6’-’2’;后,c2中的值为()
①  69
②  C
③  D
④  E
【单选题】 函数swap(intx,inty)可以完成对x值和y值的交换,在运行调用函数中的如下语句后,a=2;b=3;swap(a,b);a和b的值分别是()
①  3,2
②  3,3
③  2,2
④  2,3
【单选题】 下面程序执行后的结果是() #include stdio.h int m=0; void fun( ) { m++; } void main( ) { m++; fun( ); m++; printf(%d,m); }
①  0
②  1
③  2
④  3
【单选题】 下列关于C语言注释的叙述中错误的是()。
①  以/*开头并以*/结尾的字符串为C语言的注释符
②  注释可以出现在任何位置,用以提示和注释程序的意义
③  程序编译时,不对注释作任何处理
④  程序编译时,需要对注释进行处理
【单选题】 有如下定义:char a[][6]={abcde,ABCDE,#@xyz};哪个选项可以输出字符串ABCDE()
①  printf(%s,a[0])
②  printf(%s,a[1][6])
③  printf(%s,a[2])
④  printf(%s,a[1])
【单选题】 表达式:sizeof(unsigned)的值是()。
①  1
②  2
③  4
④  8
【单选题】 有一个二进制数,最后为第1位,依次向前为第2位、第3位等等,它的第19位的位权是多少()。
①  2的19次方
②  2的18次方
③  2的20次方
④  2的17次方
【单选题】 以下对指针变量进行操作的语句,正确的选项是()
①  int*p,*q;q=p;
②  inta,*p,*q;q=a;p=*q;
③  inta=b=0,*p;p=a;b=*p;
④  inta=20,*p,*q=a;p=q;