更多“—________ this her math book? —Yes,it is. ”相关问题
  • 第1题:

    假定有“structBOOK{chartitle[40]floatprice}BOOK*book”,则不正确的语句为( )。

    A.BOOK*x=newbook

    B.BOOKx={"C++Programming", 27.0}

    C.BOOK*x=newBOOK

    D.BOOK*x=book


    正确答案:A

  • 第2题:

    —I think English is_math.
    —Yes,I think so.

    A.much important than
    B.so important as
    C.as important as
    D.as more important as

    答案:C
    解析:
    考查形容词比较级的特殊用法。表示A和B在某种程度上一样,用“Aisas+形容词原级+asB”,故选C。

  • 第3题:

    假定有“struct BOOK{char title[40]; float price;} book;”,则正确的语句为()。

    Astruct BOOK x= &book;

    Bstruct BOOK *x=&book;

    Cstruct BOOK x=calloc(BOOK);

    Dstruct BOOK *x=BOOK;


    B

  • 第4题:

    ( ) –I think English is __________ math.

    –Yes, I think so.

    A.much important than

    B.so important as

    C.as important as

    D.as more important as


    正确答案:C

  • 第5题:

    —Hello. Blue Sky Company. Can I help you
    —Hello. This is Jack Smith. May I speak to the sales manager, please
    —Yes, this is __________.

    A.I
    B.me
    C.she
    D.her

    答案:C
    解析:
    考查交际用语,一般口语上都是用宾格This is her或者This is me。但是如果讲究正规语法,要用This is she或者It is l一类的主格。故选C。

  • 第6题:

    29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }

    A.Physicalbook

    B.sical

    C.Physical

    D.sicalbook


    B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。