【单选题】【消耗次数:1】
You need [填空] good care of your mother.
to take
take
taking
took
参考答案:
复制
纠错
相关题目
【单选题】 21. Take good care to _____ your jewelry before going on away on holiday..
①  safe
②  lock in
③  lock away
④  lock with
【单选题】 A: Must I take a train? B: No, you [填空]. You can take a plane.
①  dont
②  must not
③  dont have to
④  can not
【判断题】 A: Do you think I could borrow your bicycle? B: Take your time.
①  正确
②  错误
【判断题】 A: You should take aspirins to reduce the temperature. B: Thank you for your advice.
①  正确
②  错误
【单选题】 I need some ( )to take the bus.
①  exchange
②  charge
③  tip
④  change
【单选题】 Must I take a taxi?No, you _______. You can take my car.
①  had better to
②  don’t
③  must not
④  don’t have to
【单选题】 Why don’t you [填空] and ask your mother?
①  go
②  goes
③  going
④  go to
【判断题】 A: Must I take a taxi? B: No, you must not. You can take a bus.
①  正确
②  错误
【单选题】 A: Robbie, well go fishing soon, and well take your dad with us. B: Im ready, Grandpa. [填空].
①  Enjoy yourselves
②  You name the day
③  You cant miss it
④  Take your time
【单选题】 When traveling, you are advised to take travelers’ checks, which provide a secure _____ tocarrying your money in cash.
①  preference
②  selection
③  choice
④  alternative
随机题目
【单选题】 冒泡排序(BubbleSort)的基本概念是:依次比较相邻的两个数,将小数放在前面,大数放在后面。即在第一趟:首先比较第1个和第2个数,将小数放前,大数放后。然后比较第2个数和第3个数,将小数放前,大数放后,如此继续,直至比较最后两个数,将小数放前,大数放后。如果以上过程为一趟的话,如果一个数组有6个元素,那么要从小到大排列,利用冒泡排序法需要几趟比较过程()
①  6次
②  5次
③  4次
④  7次
【单选题】 设j和k都是int类型,则for循环语句 for(j=0,k=-1;k=1;j++,k++)printf(****\n);().
①  循环结束的条件不合法
②  是无限循环
③  循环体一次也不执行
④  循环体只执行一次
【单选题】 若有说明语句“int a[5],*p=a;”,则对数组元素的正确引用是()。
①  a[p]
②  p[a]
③  *(p+2)
④  p+2
【单选题】 若输入的值为123456,则() void swap(int password) { if(password == 123456) { printf(登录成功!); } else { printf(密码错误!); } } void main() { scanf(%d,&password); swap(); }
①  无结果
②  程序无法运行,报错
③  密码错误!
④  登录成功!
【单选题】 若有说明:int n=2,*p=&n,*q=p,则以下非法的赋值语句是:()
①  p=q
②  *p=*q
③  n=*q
④  p=n
【单选题】 若有定义:inta=7;floatx=2.5,y=4.7;则表达式x+a%3*(int)(x+y)%2/4的值是()。
①  2.75
②  0.0
③  3.5
④  2.5
【单选题】 以下C语言语句中,正确的是()
①  unsignedinta[2*3];
②  chars[N+1];
③  doublef[];
④  floatb[4]={1,2,3,4,5};
【单选题】 对于如下说明,语法和语义都正确的赋值是()int c,*s,a[]={1,3,5};
①  c=*s;
②  s[0]=a[0];
③  s=a[1];
④  c=a;
【单选题】 若有说明:int i,j =7,*p =&i,*q=&j;则与i =j;不等价的语句是()。
①  p =q
②  *p =*q
③  *i =*q
④  *p =*j
【单选题】 下列各语句中,能够将变量u、s中最大值赋给变量t的是()。
①  if(us)t=u;t=s
②  t=s;if(us)t=u
③  if(us)t=s;elset=u
④  t=u;if(us)t=s