【单选题】【消耗次数:1】
They would also like to _____ the atomic museum.
demolish
destroy
ruin
smash
参考答案:
复制
纠错
相关题目
【单选题】 A: If things go on like this, we shall destroy ourselves. B: [填空]
①  Really? Congratulations!
②  Come on. Its not that bad.
③  Yes, you are good at it.
④  Its none of my business.
【判断题】 Like a simile, a metaphor is also widely used as a figurative technique in expressions and it also needs the support of the words like, as, as if.
①  正确
②  错误
【单选题】 —Would you like some orange juice?—________________.
①  Yes, I would.
②  No, thank you.
③  Im full.
④  I dont like juice.
【单选题】 — Would you like to have some icecream?— _______________
①  I don’t know.
②  No,thanks.
③  I dont like it.
④  I like it.
【单选题】 ______you would like to spend on this vacation?
①  Where
②  When
③  Who
④  What
【单选题】 Would you like ____ further education?
①  get
②  to get
③  getting
④  to getting
【单选题】 Would you like some [填空]?
①  potato
②  potatos
③  potatoes
④  potatos
【单选题】 Would you like [填空] ,please?
①  two glass of water
②  two glasses of water
③  two glass of waters
④  two glasses of waters
【单选题】 Would you like [填空] TV?
①  watch
②  watches
③  watched
④  watching
【单选题】 Would you like some [填空]?
①  potato
②  potatos
③  potatoes
④  potato's
随机题目
【多选题】 共用体常用于()
①  常用来节省内存,特别是一些嵌入式编程,内存是非常宝贵的!
②  常用来占据内存,特别是一些嵌入式编程,内存越占多越好
③  常用于操作系统数据结构或硬件数据结构!
④  以上都不对
【多选题】 下面对字符数组初始化正确的是()
①  chara[5]={a,b,c,d,e};
②  chara[3]={a,b,c,d,e};
③  chara[5]={a,b,c,d,e};
④  chara[10]={a,b,c,d,e};
【多选题】 当定义一个结构体变量时,系统为它分配内存空间,以下说法不正确的是()
①  结构中一个成员所需的内存容量
②  结构中第一个成员所需的内存容量
③  结构体中占内存容量最大者所需的容量
④  结构中各成员所需内存容量之和
【单选题】 设有 int x=11; 则表达式 (x++ * 1/3) 的值是().
①  3
②  4
③  11
④  12
【单选题】 C语言中的简单数据类型有()
①  整型、实型、逻辑型
②  整型、实型、字符型
③  整型、字符型、逻辑型
④  整型、实型、字符型、逻辑型
【单选题】 已知inta[4][4]={{1,2},{3},{4},{1,2,3}};问a[2][0]该元素的值是()
①  2
②  3
③  4
④  1
【单选题】 用C语言编写的源程序经过编译后,若没有产生编译错误,则系统将()。
①  生成可执行文件
②  生成目标文件
③  输出运行结果
④  自动保存源文件
【单选题】 排序是计算机内经常进行的一种操作,其目的是()
①  将一组无序的记录序列调整为有序的记录序列。
②  将一组有序的记录序列调整为无序的记录序列。
③  将一组交错的记录序列调整为有序的记录序列。
④  将一组交错的记录序列调整为无序的记录序列。
【单选题】 定义字符数组charclassname[100];接收从键盘输入的班级名称,下面语句正确的是()
①  scanf(%c,classname)
②  scanf(%s,classname);
③  Scanf(%c,classname);
④  Scanf(%s,classname);
【单选题】 若变量已正确说明为int类型,要给a,b,c输入数据,以下语句正确的是()
①  read(a,b,c);
②  scanf(%d%d%d,a,b,c);
③  scanf(%D%D%D,a,%b,%c);
④  scanf(%d%d%d,a,b,c);