更多“Purser presents all the seaman’s books to the ________A.PilotB.Customs OfficerC.Immigratio ”相关问题
  • 第1题:

    Every entry required to be made in the Official Logbook shall be signed by the ______.

    A.Mate on watch

    B.Master and Chief Mate or other member of the crew

    C.Master only

    D.Purser,one of the Mates,and some other member of the crew


    正确答案:B

  • 第2题:

    06410101:若有语句:char s1[10], s2[10]={"books"},则能将字符串books赋给数组s1的正确语句是()。

    A.s1={"books"};

    B.strcpy(s1,s2);

    C.s1=s2;

    D.strcpy(s2,s1);


    A

  • 第3题:

    purser指主任乘务长。


    purser

  • 第4题:

    There are some new books in the school library.They are__books.

    A.child
    B.childrens'
    C.children
    D.children's

    答案:D
    解析:
    表示名词的所属格时用’s。学校图书馆进了新书,都是儿童书。

  • 第5题:

    若有声明语句char s1[10]={0},s2[10]="books";则能将字符串“books”赋给数组s1保存的语句是()。

    A.strcat(s1,s2);

    B.s1="books";

    C.s1=s2;

    D.strcpy(s2,s1);


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