【单选题】【消耗次数:1】
They looked at the ( ) of the dancing waves in the sunlight.
sparkly
sparkle
sparker
sparking
参考答案:
复制
纠错
相关题目
【单选题】 Light waves and heart waves are all electromagnetic. ______ are radio waves.
①  Some
②  Such
③  As
④  So
【判断题】 The young teacher are dancing there.
①  正确
②  错误
【判断题】 I prefer swimming than dancing.
①  正确
②  错误
【单选题】 She [填空] dancing every evening.
①  has study
②  studies
③  study
④  studied
【单选题】 I like dancing and so [填空] Tom.
①  does
②  is
③  do
④  did
【单选题】 We looked for a table to sit down, but they were all ____.
①  reserved for
②  engaged in
③  used up
④  taken up
【单选题】 He________listen to pop music,but now he________dancing.
①  is used to;used to
②  used to;is used to
③  used to;is used for
④  is used for;used to
【单选题】 _______ he knew it was just a joke, _______Peter looked frightened.
①  Although, but
②  /, and
③  Although, /
【单选题】 18. He ______ listen to pop music, but now he ______dancing.
①  is used to; used to
②  used to; is used to
③  used to; is used for
④  is used for; used to
【单选题】 You should _______ your shoes before you enter the dancing room.
①  get off
②  put off
③  take off
④  fall off
随机题目
【多选题】 设已定义charx[8]和intj为了给该数组赋值,下面语句中错误的是:()
①  x[8]=TurboC
②  x=TurboC
③  x[]=TurboC
④  for(j=0;j7;j++)x[j]=getchar()
【多选题】 算法的设计方法有很多,常用的算法方法有以下哪些()。
①  递推算法
②  迭代算法
③  穷举算法
④  冒泡排序算法
【多选题】 若有说明int a[3][4];则对a数组元素的引用不正确是()
①  a[2][4]
②  a[1,3]
③  a[1+1][0]
④  a(2)(1)
【多选题】 break可以用用于下列哪些结构()
①  if
②  switch...case
③  while
④  for
【多选题】 基本数据类型包括有()。
①  整型
②  实型
③  字符型
④  字符串型
【多选题】 以下对C语言函数的有关描述中,不正确的是()
①  在C语言程序中,调用函数时,如函数参数是简单变量,则只能把实参的值传递给形参,形参的值不能传送给实参
②  C语言函数既可以嵌套定义又可嵌套调用
③  C语言函数必须有返回值,否则不能使用函数
④  在C语言程序中有调用关系的所有函数必须放在同一个源程序文件中
【多选题】 下面哪些基本结构和特性符合结构化程序设计的要求()。
①  选择结构
②  循环结构
③  顺序结构
④  各结构之间只有一个入口、至多两个出口
⑤  各结构之间只有一个入口、一个出口
【多选题】 以下正确的说法有()
①  C语言程序的基本组成单位是函数;
②  一个函数的类型为void,在定义时,可以省略void;
③  函数声明是一条C语句;
④  函数必须要有返回值;
【多选题】 以下各组选项中,不能正确定义二维实型数组s的选项是()
①  float s[3][4];float s[ ][4];float s[3][ ]={{1},{0}}
②  float s(3,4);float s[ ][ ]={{0};{0}};float s[3][4]
③  float s[3][4];float s[ ][4]={{0},{0}}; float s[ ][4]={{0},{0},{0}}
④  float s[3][4];float s[3][ ];float s[ ][4]
【多选题】 关于递归的有关内容描述项正确的是()
①  可以采用递归解决汉诺塔游戏的问题
②  递归可以分为直接递归与间接递归
③  可以采用递归解决求一个数n!问题
④  递归就是在过程或函数里调用自身