更多“My aunt enjoys()for her friends at home. ”相关问题
  • 第1题:

    Today is (11) 15. It’s Marie-s birthday.(12) friends (13) here.They are Linda, Tom, Peter,John, and Lucy. Her (14) are here, too. There(15) a big cake on the table.There are fourteen candles (16) the cake. There (17) also salad, ham-burgers, fish, eggs,and vegetables on the table. Marie is very happy.They (18) the song Happy Birthday to Marie. Marie gets (19) gifts (20) her friends. She is very happy.

    ( )11.

    A. October

    B. Fifth

    C. october

    D. Fifteenth


    正确答案:A
    .11.A【解析】选A。月份的首字母应大写。

  • 第2题:

    ( ) name is Jane. ( ) is from the USA.

    A. Her, She

    B. She's, She

    C. Her, Her


    答案:A

  • 第3题:

    9.

    A.Writers

    B.Children

    C.Companies

    D.Friends


    正确答案:B
    9.B【解析】由最后一句可知是children。

  • 第4题:

    20.

    A. friend

    B. a friend

    C. student

    D. friends


    正确答案:D
    20.D【解析】句意为“我们是好朋友”,故应用复数名词;friends。

  • 第5题:

    Examine the following command;ALTER SYSTEM SET enable_ddl_logging = TRUE;Which statement is true?()

    A. Only the data definition language (DDL) commands that resulted in errors are logged in the alert log file.

    B. All DDL commands are logged in the alert log file.

    C. All DDL commands are logged in a different log file that contains DDL statements and their execution dates.

    D. Only DDL commands that resulted in the creation of new segments are logged.

    E. All DDL commands are logged in XML format in the alert directory under the Automatic Diagnostic Repository (ADR) home.


    参考答案:B

  • 第6题:

    【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}

    A.0 1 2 3

    B.0 4 0 10

    C.0 4 5 15

    D.l 4 5 15


    DDBBCC C语言对枚举的定义规定:在枚举中声明的各个枚举元素,如果没有明确指出某个枚举元素的值,它的上一个元素存在并有明确值的情况下,这个枚举元素的值为其上一个元素的值+1。在本题中,没有明确说明枚举元素em3的值,则em3=em2+1=1+1=2,进而可知,在printf()打印函数中,要打印的数组元素是aa[3]、aa[1]、aa[2],因此最后的打印结果应当为“DDBBCC”。