【单选题】【消耗次数:1】
It is generally considered unwise to give a child ______ he or she wants.
however
whatever
whichever
whenever
参考答案:
复制
纠错
相关题目
【判断题】 It is generally considered unwise to give a child ____whatever____ he or she wants.
①  正确
②  错误
【判断题】 判断线上的内容是否正确:It is generally considered unwise to give a child ____whatever____ he or she wants.
①  正确
②  错误
【单选题】 The eldest child is thoroughly ____ because they always give him whatever he wants.
①  wasted
②  spoiled
③  destroyed
④  uneducated
【单选题】 I will give this dictionary to ____ wants to have it.
①  whomever
②  someone
③  whoever
④  anyone
【单选题】 He wants to find a ______________ with a school.
①  hobby
②  information
③  position
④  power
【单选题】 ____ money, she is quite rich. However, this does not mean that she is happy.
①  Concerning
②  As to
③  In terms of
④  In the light of
【单选题】 _____money, she is quite rich. However, this does not mean that she is happy.
①  Concerning
②  As to
③  In terms of
④  In the light of
【单选题】 He denied that his country wants to () Europe.
①  dominate
②  control
③  document
④  domestic
【单选题】 2. Whenever I called in on Paul, he _______ on the phone.
①  talked
②  is talking
③  was talking
④  will talk
【单选题】 He considered that the change would be ____ to his health.
①  healthy
②  available
③  profitable
④  beneficial
随机题目
【单选题】 若有说明语句:char c=‘\64’;则变量C包含:
①  1个字符
②  2个字符
③  3个字符
④  说明不合法,C值不确定
【单选题】 以下关于数组的描述正确的是()
①  数组大小固定,但是可以有不同类型的数组元素
②  数组大小可变,但是所有数组元素的类型必须相同
③  数组大小固定,所有元素的类型必须相同
④  数组大小可变,可以有不同类型的数组元素
【单选题】 以下四个选项中不能看作一条语句的是()
①  {;}
②  a=0,b=0,c=0;
③  if(a>0)
④  if(b==0)m=1;n=2;
【单选题】 若有说明:char s1=&#39;\067&#39;,s2=&#39;1&#39;;则变量s1,s2在内存中各占的字节数是()<br/>
①  11
②  41
③  31
④  12
【单选题】 已知charch=‘A’,且表达式:ch=(ch>=‘A’&&ch<=‘Z’)?(ch32):ch,该表达式的值是()
①  A
②  a
③  z
④  Z
【单选题】 下列循环语句中,不能够正常结束的是()
①  inti=0;for(;i<100;i);
②  inti=0;for(;;){if(i>100)break;}
③  inti=0,j=0;while(i<=j)j;
④  inti=0,j=0;do{i=j;i;j;}while(i<j);
【单选题】 下列数组定义及赋值不正确的是()
①  int a[10]={0,1,2,3,4,5,6,7,8,9};
②  int a[]={0,1,2,3,4,5,6,7,8,9};
③  int a[2][5]={0,1,2,3,4,5,6,7,8,9};
④  int a[2][]={0,1,2,3,4,5,6,7,8,9};
【单选题】 以下程序中,while循环的循环次数是()
①  1
②  10
③  6
④  死循环,不能确定次数
【单选题】 已知inta=4,b=5;,这执行表达式a=a>b后,变量a的值为()
①  0
②  1
③  4
④  5
【单选题】 以下不能正确定义二维数组的选项是()
①  int a[2][2]={{1},{2}}  
②  int a[][2]={l,2,3,4}
③  int a[2][2]={{l},2,3}  
④  int a[2][]={{1,2},{3,4}}