I ( ) by the teacher at the meeting next week.A、am praisedB、have been praisedC、shall praisedD、shall be praised

题目

I ( ) by the teacher at the meeting next week.

A、am praised

B、have been praised

C、shall praised

D、shall be praised


相似考题
更多“I ( ) by the teacher at the meeting next week.A、am praisedB、have been praisedC、shall pra ”相关问题
  • 第1题:

    l.—Hello! My name_________ Tom.

    —Hello! I _________ Kate.

    A. is ; is

    B. am ; am

    C. am; is

    D. is ; am


    正确答案:D
    I.1.D【解析】“My name”我的名字是第三人称单数,对应be动词“is,而I对应am,故选D。

  • 第2题:

    -Would you like to go to the cinema?

    -I'd _____to go to the museum.

    A. rather

    B. Prefer

    C. have


    参考答案:B

  • 第3题:

    —I'd met Smith several times before.—So (have) ( ) I.


    正确答案:had

  • 第4题:

    If only we______(have)a phone! I'm tired of waiting outside the public phone box.


    正确答案:
    had[解析] 虚拟语气,要是我们有电话就好了,用过去式。

  • 第5题:

    Why()the old block of flats()demolished next month?

    A、are…being

    B、is…being

    C、has…been

    D、have…been


    参考答案:B

  • 第6题:

    ●试题二

    阅读下列函数说明和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′。