【单选题】【消耗次数:1】
To obtain a satisfactory result, one must apply two ____ of paint on a clean surface.
coats
levels
times
courses
参考答案:
复制
纠错
相关题目
【单选题】 You must clean the classroom, ____ you?
①  needn’t
②  mustn’t
③  can’t
④  don’t
【单选题】 Our room must ___ clean.
①  keep
②  be kept
③  to be kept
④  to keep
【单选题】 4. Our room must ___ clean.
①  keep
②  be kept
③  to be kept
④  to keep
【单选题】 The trees must ________ three times a week.
①  water
②  watering
③  be watered
④  waters
【单选题】 Ill finish my adult education courses_________ two years.
①  in
②  on
③  until
④  by
【多选题】 Among the outstanding inventions of modern times, television___________ must be included.
①  clearly
②  obviously
③  definitely
④  friendly
【单选题】 The rescue team must have searched for the missing visitors two days ago, _____?
①  mustn’ t they
②  haven’ t they
③  didn’ t they
④  hadn’ t they
【单选题】 According to the author, in order to have a good command of English one must ____.
①  employ as many learning strategies as possible
②  expect to gain an easier task
③  exert oneself constantly
④  sustain oneself
【单选题】 It was a(n) _______ achievement ― no one has ever won the championship five times before.
①  single
②  unique
③  only
④  sole
【单选题】 I have two hobbies. One is fishing, ____ is cooking.
①  another
②  the other
③  else
④  other
随机题目
【单选题】 下列关于纯虚函数与抽象类的描述中,()是错误的。
①  抽象类是指具有纯虚函数的类
②  纯虚函数是一个特殊的虚函数,它没有具体的实现
③  一个基类中说明具有纯虚函数,该基类的派生类一定不再是抽象类
④  抽象类只能作为基类来用,其纯虚函数的实现由派生类给出
【单选题】 有如下声明:string a=hello,b=world;以下操作不正确的是()。
①  a=b
②  a+b
③  strlen(a)
④  ab
【单选题】 下列哪种表达形式,代表多行注释()
①  /“描述信息”/
②  /*描述信息*/
③  #描述信息#
④  //描述信息//
【单选题】 设int a =-12,b =5;则条件表达式a <b ?a+2:b 的值为()
①  1
②  0
③  -10
④  5
【单选题】 下列常量中,十六进制int型常量是()。
①  0x5f
②  x2a
③  046
④  7a
【单选题】 在下列读写函数中,进行写操作的函数是()。
①  get()
②  read()
③  put()
④  getline()
【单选题】 下列对字符串的定义中,错误的是()
①  char str[5]=abcde;
②  char str[ ]=abcde;
③  char *str =abcde;
④  char str[ ]={’a’,’b’,’c’,’d’,’e’,’\0’};
【单选题】 C++中,根据()识别类层次中不同类定义的虚函数版本。
①  参数个数
②  参数类型
③  函数名
④  this指针类型
【单选题】 静态联编又叫做()
①  延迟联编
②  早期联编
③  晚期联编
④  以上三者都行
【单选题】 下列关于类的权限的描述错误的是()
①  类本身的成员函数只能访问自身的私有成员
②  类的对象只能访问该类的公有成员
③  普通函数不能直接访问类的公有成员,必须通过对象访问
④  一个类可以将另一个类的对象作为成员