【单选题】【消耗次数:1】
7.--Here is a new schoolbag for you. --Thank you, Mum, but there is no need ______a new one for me.
tobuy
tohavebought
buying
bought
参考答案:
复制
纠错
相关题目
【单选题】 —Thank you for your MP4 player. I’ll ask Mary to take it to you soon.—_____. I’ve bought a new one.
①  No sense
②  No hurry.
③  No way
④  sorry
【单选题】 Thank you ever so much for the scarf you bought me.____________
①  No thanks.
②  No, it’s not so good.
③  I’m glad you like it.
④  Please don’t say so.
【单选题】 Happy New Year to you. ____________
①  The same to you.
②  Yes, I am happy.
③  What about you.
④  Very well, thanks.
【单选题】 A: Happy New Year to you. B: [填空]
①  Yes,Im happy.
②  How about you
③  Fine,thank you.
④  The same to you.
【单选题】 If your new coat is too large, a tailor can____ it to fit you.
①  alter
②  transform
③  vary
④  change
【单选题】 Please get me a new [填空] when you go back home.
①  clothes
②  dress
③  clothing
④  trousers
【单选题】 How about [填空] cakes? ---Thank you.
①  some
②  any
③  many
④  little
【单选题】 Do you mind me the window beside you.
①  to open
②  opening
③  open
④  opened
【单选题】 —I’ve got an offer in New York. —Oh, ____! But I’m going to miss you.
①  That’s too bad
②  I’m sorry
③  I beg your pardon
④  That’s great
【单选题】 In the author’s opinion, if you cannot memorize all the new words you are learning, it is because _____.
①  you are forgetful
②  you are not working hard enough
③  you are not interested in memorizing English words
④  you are trying to memorize too many new words at a time
随机题目
【单选题】 一个指针指向一个数据对象,它保存着该数据对象的地址,若数据对象为DataType类型,则该指针的类型为( )。
①  DataType*
②  DataType
③  DataType
④  DataType**
【单选题】 带有随机函数的表达式rand()%20的值在( )区间内。
①  1~19
②  1~20
③  0~19
④  0~20
【单选题】 在函数体中又调用自身函数则称为( )调用。
①  非递归
②  直接递归
③  间接递归
④  末尾递归
【单选题】 在下面的( )函数声明语句存在语法错误。
①  AA(int a,int b);
②  AA(int,int)
③  AA(int a;int b)
④  AA(int a,int)
【单选题】 要把一个整形指针p转换为字符指针,则采用的强制转换表达式为( )。
①  (int*)p
②  (int)*p
③  (char*)p
④  (char)*p
【单选题】 假定一条定义语句为“int a[10],x,*pa=a;”,若要把数组a中下标为3的元素赋值给x,则不正确的语句为( )。
①  x=pa[3];
②  x=*(a+3);
③  x=a[3];
④  x=*pa+3;
【单选题】 假定p所指对象的值为25,p+1所指对象的值为42,则*p++的值为( )。
①  25
②  42
③  26
④  43
【单选题】 若需要把一个字符串aaa赋值到字符数组a中,则需要进行( )的函数调用实现。
①  strlen
②  strcmp
③  strcat
④  strcpy
【单选题】 假定p是一个指向float型数据的指针,则p+1所指数据的地址比p所指数据的地址大( )字节。
①  1
②  2
③  4
④  8
【单选题】 在每个C语言程序中都必须包含有这样一个函数,该函数的函数名为( )。
①  main
②  MAIN
③  name
④  Funtion