更多“He asked if there was() in that day’ s newspaper. ”相关问题
  • 第1题:

    Our work is not so good as ( ).

    A、his

    B、him

    C、he

    D、he's


    参考答案:A

  • 第2题:

    Tomorrow will be Mary’s ______ day, as she will be in her wedding dress.

    A.pink-letter

    B.white-letter

    C.black-letter

    D.red-letter


    正确答案:D
    解析: 本句参考译文:明天是玛丽的大喜日子,因为她要穿上嫁衣结婚了。【知识点来源:Unit 4】本题考查英语颜色词的联想意义。习语“a red-letter day”寓意:值得纪念的日子。

  • 第3题:

    选哪一个He’s watching TV? He’s _______

        He’s watching TV? He’s ________ to be cleaning his room.

    A) known            B) supposed              C) regarded            D) considered

     


    B


    be supposed to do 通常用来表示“(某人)理应...应当...”,常含有“实际却没有这样做”之意。例:
    We are supposed to arrive on time.
    我们理应按时到达(可是并没有)。

    be considered 通常表示“被认为...”,其后可接名词,形容词及不定式。例:
    He is considered (to be) healthy / a good student.
    (他被认为身体很健康/ 是个好学生。)

    本题的中文意思是“他在看电视?他理应在打扫房间才对。” 表示说话人对\"He\"没有打扫房间却在看电视的惊讶与不满。因此B为正确选项。

  • 第4题:

    已知学生记录描述为: struct student { int no; char name[20],sex; struct { int year,month,day; } birth; }; struct student s; 设变量s中的“生日”是“1984年11月12日”,对“birth”正确赋值的程序段是( )。

    A.year=1984;month=11;day=12;

    B.s.year=1984;s.month=11;s.day=12;

    C.birth.year=1984;birth.month=11;birth.day=12;

    D.s.birth.year=1984;s.birth.month=11;s.birth.day=12;


    正确答案:D
    解析:本题考查结构体变量的基本概念。引用结构体成员的方式为:结构体变量名.成员名“.”是“成员运算符”(分量运算符),如果成员本身又是一个结构体类型,则要用若干个成员运算符,一级一级地找到最低一级的成员。只能对最低级的成员进行赋值或存取以及运算,所以选项D)正确。

  • 第5题:

    tomorrow will be mary's _______ day,as she will be in her wedding dress.

    A、white-letter

    B、black letter

    C、pink-letter

    D、red-letter


    参考答案:D

  • 第6题:

    已知学生记录描述如下,设变量s中的“生日”应是“1984年11月11日”,下列对生日的正确赋值方式是()。 struct student{ int no; char name[20]; char set; struct{ int year; int month; int day; } birth; }; struct student s;

    A.year=1984;month=11;day=11;

    B.birth.year=1984; birth.month=11; birth.day=11

    C.s.year=1984;s.month=11;s.day=11

    D.s.birth.year=1984;s.birth.month=11; s.birth.day=11;


    s.birth.year=1984;s.birth.month=11; s.birth.day=11;