The girl _____________ the case to the staff when her parents arrived.A、was reportingB、reportedC、were reporting

题目
The girl _____________ the case to the staff when her parents arrived.

A、was reporting

B、reported

C、were reporting


相似考题
更多“The girl _____________ the case to the staff when her parents arrived. ”相关问题
  • 第1题:

    The ____________ shoes were covered with mud, so I asked them to take them off before they got into __________ car.

    A. girl’s; Tom’s

    B. girls’; Toms’

    C. girls’; Tom’s

    D. girl’s; Toms’


    正确答案:C

  • 第2题:

    Staff类含有int型数据成员ID,两个Staff对象相等是指它们的ID相同。下面的函数重载了运算符==,它用来判断两个Staff对象是否相等,相等时返回true,否则返回false。请将横线处缺失部分补充完整。

    bool Staff::Staff==(const Staff &s)

    {

    return(【 】)

    }


    正确答案:this.ID==s.ID
    this.ID==s.ID

  • 第3题:

    Staff类含有int型数据成员ID,两个Staff对象相等是指它们的ID相同。下面的函数重载了运算符==,它用来判断两个Staff对象是否相等,相等时返回true,否则返回false。请将横线处缺失部分补充完整。 bool Staff::Staff==(const Staff&s) { return (); }


    ID==s.ID;s.ID==ID

  • 第4题:

    Staff类含有血型数据成员ID,两个Staff对象相等是指它们的ID相同。下面的函数重载了运算符==,它用来判断两个Staff对象是否相等,相等时返回true,否则返回false。

    请将横线处缺失部分补充完整。

    bool Staff::Staff==(const Staff &s)

    {

    return (______);

    }


    正确答案:ID==s.ID或s.ID==ID或this ->ID==s.ID或s.ID==this->ID
    ID==s.ID或s.ID==ID或this ->ID==s.ID或s.ID==this->ID 解析:本题考核运算符的重载。运算符“==”作为成员函数重载,所以在横线处填入的表达式应该为对象本身ID与对象sID的比较表达式,即ID==s.ID。

  • 第5题:

    【填空题】流程控制语句包括A.分支语句,B.循环语句,C.控制语句。IF…ELSE语句属于 (),CASE…WHEN语句属于(),BREAK,CONTINUE,GOTO,WAITFOR语句属于(),WHILE语句属于()


    A

  • 第6题:

    以下哪个标签实现了switch功能()。

    A.<c:if>

    B.<c:switch>

    C.<c:choose>与<c:when>

    D.<c:case>


    <c:choose>