参考答案和解析
参考答案:C
更多“—He will come tomorrow. —But I’d rather he_____ next week. ”相关问题
  • 第1题:

    “if he had not been hurt __________ much, he’d never resign from office.“

    A. very

    B. fairly

    C. that

    D. rather


    参考答案:C

  • 第2题:

    Iwouldratheryou(come)tomorrow.


    正确答案:
    came

  • 第3题:

    When a teacher says "Next, please pay attention to the time of arrival and departure of the planes in the recording.", he/she intends to develop students' skill of__________.

    A.predicting
    B.getting the general picture
    C.distinguishing sounds
    D.getting specific information

    答案:D
    解析:
    考查听力教学.题目中教师让学生注意听力中“飞机抵达和出发的时间”是为了获得具体信息。

  • 第4题:

    ●试题二

    阅读下列函数说明和C代码,将应填入(n)处的字句写在答题纸的对应栏内。

    【说明】

    该程序运行后,输出下面的数字金字塔

    【程序】

    include<stdio.h>

    main ()

    {char max,next;

    int i;

    for(max=′1′;max<=′9′;max++)

    {for(i=1;i<=20- (1) ;++i)

    printf(" ");

    for(next= (2) ;next<= (3) ;next++)

    printf("%c",next);

    for(next= (4) ;next>= (5) ;next--)

    printf("%c",next);

    printf("\n");

    }

    }


    正确答案:
    ●试题二【答案】(1)(max-′0′)(2)′1′(3)max(4)max-1(5)′1′【解析】该程序共有9行输出,即循环控制变量max的值是从1~9。每行输出分3部分,先用循环for语句输出左边空白,(1)空填"(max-′0′)";再用循环输出从1到max-′0′的显示数字,即(2)空和(3)空分别填1和max;最后输出从max-′1′~1的显示数字,即(4)空和(5)空分别填和max-1和′1′。

  • 第5题:

    When a teacher says "Next, please pay attention to the time of arrival and departure of the planes in the recording ." he/she intends to develop the students' skill of __________.

    A.predicting
    B.getting the general pictures
    C.distinguishing sounds
    D.getting specific information

    答案:D
    解析:
    考查英语听力教学。题目中教师让学生注意听力中“飞机抵达和出发的时间”是为了让学生听出具体的时间信息.即培养学生获得具体信息的能力。

  • 第6题:

    在KMP模式匹配中,用next数组存放模式串的部分匹配信息。当模式串位j与目标串位i比较时,两字符不相等,则i的位移方式是()。

    A.i=next[j]

    B.i不变

    C..j不变

    D.j=next[j]


    表示下一趟从 j=0 位置开始比较