【判断题】【消耗次数:1】
A: I had a good holiday this time. B: Congratulations.
正确
错误
参考答案:
复制
纠错
相关题目
【判断题】 A: I am applying for my dream job with a software company. B: Congratulations.
①  正确
②  错误
【单选题】 Tom: It’s the most delicious fruit I have had a long time.
①  I’m so glad you like it.
②  You are not hungry now.
③  I like eating this fruit, too.
④  You should like it.
【单选题】 If I had had enough time, I __________ it well.
①  would do
②  would have done
【单选题】 A: I doubt whether the Chinese Football Team can win the game this time. B: [填空].
①  Thats true
②  Its hard to say
③  I like the team
④  I dont believe it
【判断题】 A: Do you think I could borrow your bicycle? B: Take your time.
①  正确
②  错误
【单选题】 When I was a child, I_______go back home on time.
①  have to
②  must
③  had to
【单选题】 Hardly had the train arrived at the destination when the passengers ________ out in no time.
①  flew
②  dropped
③  flooded
④  ran
【单选题】 Lucy,who did not even go to grade school, had no ________of a job at the time.
①  interview
②  pressure
③  prospect
④  application
【单选题】 I doubt[填空] we can finish it on time.
①  not
②  and
③  so
④  if
【单选题】 I wil pay you[填空] next time.
①  forth
②  back
③  down
④  on
随机题目
【单选题】 假定要动态分配一个类型为Worker的具有n个元素的数组,并由r指向这个动态数组,则使用的语句表达式为( )。
①  malloc(n)
②  calloc(n,sizeof(struct Worker))
③  calloc(n*sizeof(struct Worker))
④  realloc(n,sizeof(struct Worker))
【单选题】 在程序中执行到( )语句时,将结束所在函数的执行过程,返回到调用该函数的位置。
①  continue
②  break
③  goto
④  return
【单选题】 假定a是一个一维数组,则以字节为单位的a[i]存储地址为( )。
①  (char*)a+i*sizeof(a[i])
②  a+i*sizeof(a[i])
③  (char*)a+i
④  a+i
【单选题】 假定一个函数的参数说明为const int* a,则在函数体中执行( )操作非法。
①  printf(“%d”,*a)
②  a==NULL
③  *a=20
④  a=NULL
【单选题】 在函数定义的参数表中,也可以使用函数参数,假定一个函数参数说明为int ff(int),则等价的函数指针说明为( )。
①  int *ff(int)
②  int ff
③  int *ff
④  int (*ff)(int)
【单选题】 随机函数rand()%20的值在整数( )区间内。
①  1和20
②  1和19
③  0和19
④  0和20
【单选题】 一个函数定义由( )两部分组成。
①  函数头和函数体
②  函数头和函数尾
③  函数原型和函数体
④  函数名和参数表
【单选题】 假定一个函数的二维数组参数说明为char w[][N],则与之等价的指针参数说明为( )。
①  char(*w)[N]
②  char *w [N]
③  char(*w) N
④  char** a
【单选题】 假定一个函数的参数说明为const int a,则在函数体中执行( )操作非法。
①  printf(“%d”,a)
②  a==0
③  int x=a
④  a=10
【单选题】 在函数体中又调用自身函数则称为( )调用。
①  非递归
②  直接递归
③  间接递归
④  末尾递归