参考答案和解析
正确答案:对
更多“The next morning she found the man lying in bed, dead.() ”相关问题
  • 第1题:

    The depth over a shallow patch, ______ about 1.5 miles southeastward of Nanshan Tou lighthouse reduces to about 8 meters.

    A.lay

    B.lies

    C.being lain

    D.Lying


    正确答案:D
    横位于NanshanTou灯塔东南方大约1.5海里的浅水区上方水深减少到8米。。

  • 第2题:

    使用VC6打开考生文件夹下的工程test30_1,此工程包含一个源程序文件test30_1.cpp,但该程序运行有问题,请改正程序中的错误,使该程序的输出结果为:

    Previous=9,Next=11

    源程序文件test30_1.cpp清单如下:

    include <iostream.h>

    /***************** found *****************/

    void prevnext (int,int &,int&);

    int main ( )

    {

    int x=10,y,z;

    prevnext (x,y,z);

    cout << "Previous=" << y << ", Next=" << z<<end1;

    return 0;

    }

    /***************** found *****************/

    void prevnext (int x, int prev, int next)

    {

    /***************** found *****************/

    prev=x--;

    next=++x;

    }


    正确答案:(1)错误:在main()函数前缺少prevnext函数的声明 正确:void prevnext(intint &int &); (2)错误:void prevnext(int xint prevint next) 正确:void prevnext(int xint &prevint &next) (3)错误:prev=x--; 正确:prev=x-1;
    (1)错误:在main()函数前缺少prevnext函数的声明 正确:void prevnext(int,int &,int &); (2)错误:void prevnext(int x,int prev,int next) 正确:void prevnext(int x,int &prev,int &next) (3)错误:prev=x--; 正确:prev=x-1; 解析:(1)函数在使用前必须已经被定义,main()中调用prevnext函数,而该函数的实现在main()之后,所以在main()之前必须添加该函数的声明;
    (2)由运行结果可知,通过函数prevnext调动要改变main()中的实参值,所以prey和next都应为引用型参数:
    (3)由运行结果prev=x-1,而源程序的prev=x,x=x-1,这里涉及的是运算符的优先级问题。

  • 第3题:

    The manager made it clear that he intended to____down some new rules to enforce workplace discipline.

    A.laying
    B.lay
    C.lie
    D.lying

    答案:B
    解析:
    本题考察动词时态。题目意为“经理明确表示他打算制定一些新规章来加强工作纪律。”选项A意为“提出、放置”,为lay的现在分词;选项B意为“提出、放置”;选项C意为“躺、说谎”;选项D意为“说谎、横卧”,为lie的现在分词。本题lay down为固定搭配词组,意为“制定、放下”,且intended to后接动词原形,选项B符合题意。
      

  • 第4题:

    请选择合适的词将句子补充完整,记得变换形式。

    be late for / on time / wake up / have difficulty with / get out of / turn off / insist on / talk with

    1.Mike _______his colleagues when the phone rang.

    2.I called Ruby back as soon as I _______ bed.

    3.Do you mind if I _______ the light?

    4.Thanks to our hard work, we can fulfil the task _______.

    5.Most tour companies _______ advance payment when a booking is made.

    6.We'll _______ the meeting if we stay any longer.

    7.She _______to find himself alone in the house.

    8.He _______human relations.


    参考答案:1.was talking with;2.got out of;3.turn off;4.on time;5.insist on;6.be late for;7.woke up;8.has difficulty with

  • 第5题:

    以下程序的运行结果为:public class Test{public static void main(String argv[ ]){System.out.println("good"+"morning");}}

    A. goodmorning

    B. "good"+"morning"

    C. good morning

    D. good+morning


    正确答案:A