【单选题】【消耗次数:1】
A ___________ asks people for money or food .
worker
soldier
beggar
doctor
参考答案:
复制
纠错
相关题目
【单选题】 At the bus stop _____ a soldier and two young people on their way to North Carolina.
①  were
②  was
③  is
④  waiting
【单选题】 When you go to the doctor he asks you to describe your ____ so that he can make a diagnosis (诊断).
①  indications
②  signs
③  symbols
④  symptoms
【判断题】 Hot dogs and hamburgers, Italian pizza and KFC are the favorite fast food for people.
①  正确
②  错误
【单选题】 It is said that people can ______ or deposit money from bank through facial recognition, ie, they dont have to use a bank card.
①  snatch
②  rob
③  draw
④  pull
【单选题】 The credit cards permit people to borrow-to-buy things they want even when they ( ) have enough money to pay the full price.
①  do not
②  do
③  does
④  does not
【单选题】 It is said that people can ______ or deposit money from bank through facial recognition, ie, they don’t have to use a bank card.
①  snatch
②  rob
③  draw
④  pull
【单选题】 The soldier was _____ of running away when the enemy attacked.
①  scolded
②  charged
③  accused
④  punished
【单选题】 He is a doctor of().
①  phase
②  phone
③  philosophy
④  teacher
【单选题】 The worker put up a picture [填空] the wall.
①  in
②  on
③  at
④  for
【单选题】 If he ___ he ___ that food.
①  was warned; would not take
②  had been warned; would not have taken
③  would be warned; had not taken
④  would have been warned; had not taken
随机题目
【单选题】 在下面循环语句中内层循环体S语句的执行总次数为( ) for(int i=0; i i++) for(int j=i; j j++) S;
①  n2
②  (n+1)/2
③  n(n-1)/2
④  n(n+1)/2
【单选题】 当处理特定问题时的循环次数已知时,通常采用()来解决
①  for循环
②  while循环
③  do循环
④  switch语句
【单选题】 由C++目标文件连接而成的可执行文件的默认扩展名为()
①  cpp
②  exe
③  obj
④  lik
【单选题】 以下标识符中不全是保留字的是()
①  case for int
②  default then while
③  bool class long
④  goto return char
【单选题】 当类中一个字符指针指向具有n个字节的存储空间时,它所存储字符串的最大长度是( )
①  n
②  n-1
③  n+1
④  n-2
【单选题】 switch语句能够改写为()语句
①  for
②  if
③  do
④  while
【单选题】 设x和y均为bool量,则x y为真的条件是()
①  它们均为真
②  其中一个为真
③  它们均为假
④  其中一个为假
【单选题】 以下叙述中不正确的是()
①  在一个函数中,可以有多条return语句
②  函数的定义不能嵌套,但函数的调用可以嵌套
③  函数必须有返回值
④  不同的函数中可以使用相同名字的变量
【单选题】 设”int a=12;”,则执行完语句”a+=a*a;”后,a的值是()
①  12
②  144
③  156
④  288
【单选题】 设有如下函数定义 int f(char *s) { char *p=s; while(*p!=’\0’) p++; return(p-s); } 在主函数中用coutf(“good”)调用上述函数, 则输出结果为( )
①  3
②  4
③  5
④  6