【单选题】【消耗次数:1】
10.The local people started a campaign to force the government to ______roads properly.
keep
. remain
maintain
carry
参考答案:
复制
纠错
相关题目
【单选题】 The farmer said all their hopes _____ the support of the local government.
①  decided on
②  rested on
③  based on
④  founded on
【单选题】 The people had to ( ) a campaign to combat hatred against colored races.
①  launch
②  set
③  settle
④  lash
【单选题】 10.The play is based on ______event in history.
①  real
②  genuine
③  false
④  precise
【单选题】 After the flood the first thing the local government did was to provide ( )for the homeless families.
①  accommodate
②  accommodator
③  accommodation
④  accommodative
【单选题】 The government would be unwise to ( ) the complaints of its people.
①  overlook
②  ignore
③  neglect
④  disrespect
【单选题】 Nowadays people spend more time exercising to keep _____.(
①  fitly
②  fitting
③  fit
④  fiitted
【单选题】 With the help of the government , a large number of people ---_______ after the flood in 1991.
①  survived
②  suspended
③  suffered
④  suspected
【单选题】 Most people come to realize that it is about time the government ____ further measures to control the population.
①  must take
②  is taking
③  takes
④  took
【单选题】 Most people came to realize that it was about time the government ____ further measures to control the population.
①  must take
②  is taking
③  takes
④  took
【单选题】 Take ____ easy. The roads are icy.
①  it
②  them
③  us
④  you
随机题目
【单选题】 汉诺塔中,如果有n个盘子,最少需要移动()步可以完成。
①  2的n次方
②  2的n次方-1
③  2的n次方+1
④  2*n-1
【单选题】 若有定义:int a[][3]={1,2,3,4,5,6,7,8};,则a数组的行数为()
①  无确定值
②  3
③  2
④  1
【单选题】 在下列语句中,常用于多分支情况的是()。
①  if
②  if-else
③  switch
④  else-if-else
【单选题】 若有定义:int a[3][4];则表达式&a[2][1]-a的值为()。
①  7
②  8
③  9
④  10
【单选题】 下列各语句序列中,能够且仅输出整型变量a、b中最大值的是()。
①  if(ab)printf(%d\n,a);printf(%d\n,b);
②  printf(%d\n,b);if(ab)printf(%d\n,a);
③  if(ab)printf(%d\n,a);elseprintf(%d\n,b);
④  if(ab)printf(%d\n,a);printf(%d\n,b);
【单选题】 若变量已正确定义并且指针p已经指向某个变量x,则(*p)++相当于()
①  p++
②  x++
③  *(p++)
④  x++
【单选题】 算术运算符、赋值运算符和关系运算符的运算优先级按从高到低依次为()。
①  算术运算、赋值运算、关系运算
②  算术运算、关系运算、赋值运算
③  关系运算、赋值运算、算术运算
④  关系运算、算术运算、赋值运算
【单选题】 通过输入设备,将数据输入到程序的操作是()。
①  输入
②  输出
③  修改
④  判断
【单选题】 在C语言中,有以下二维数组的定义inta[3][5];如想引用第五个元素,则书写()。
①  a[4]
②  a[5]
③  a[0][4]
④  a[1][5]
【单选题】 C语言规定,简单变量做实参时,它和对应形参之间的数据传递方式是()
①  地址传递
②  单向值传递
③  由实参传给形参,再由形参传回给实参
④  由用户指定传递方式