参考答案和解析
正确答案:A
解析:首句询问需要帮什么忙?是服务行业常用语。回答时需要直接说明有什么问题需要帮忙就好了。选项B、C看上去是服务人员的话。
更多“—Hello, Mr.Snyder.What can I do for you? — () . ”相关问题
  • 第1题:

    This is very important. You_____remember to shut down your computer every

    evenlng。

    A. ought

    B. need

    C. must

    D. can


    参考答案C

  • 第2题:

    You ( ) Jenny at the meeting this morning because she left for Hong Kong last night.

    A、wouldn’t have seen

    B、shouldn’t have seen

    C、mustn’t have seen

    D、can’t have seen


    参考答案:D

  • 第3题:

    —_______ I return the book to the library this week?— No, you _______.You can keep it until the end of this month.

    A.Must; needn’t

    B.Can; can’t

    C.May; mustn’t

    D.Can; mustn’t


    答案:A

  • 第4题:

    Must we clearn the room before we leave?No, you _______

    A.mustn't

    B.can't

    C.needn't


    参考答案:C

  • 第5题:

    以下程序的输出结果是()。main(){char*a[][5]={“how”,”do”,”you”,”do”,”!”};char**p;inti;p=a;for(i=0;i<4;i++);printf(“%s”,p[i]);}()

    A.howdoyoudo!

    B.how

    C.howdoyoudo

    D.hdyd


    正确答案:C

  • 第6题:

    有下列程序段:include using namespace std;int main() { char b[]= "Hello,you"; b[

    有下列程序段: #include <iostream> using namespace std; int main() { char b[] = "Hello,you"; b[5] = 0; cout<<b<<end1; return 0; } 执行此程序后,得到的输出结果是( )。

    A.Hello,you

    B.Hello0you

    C.Hello

    D.0


    正确答案:C
    解析:本题考核字符数组的特性。本题表面上看起来很简单,其实不然,出题者在题中隐藏了一个陷阱。常见的错误答案是:字符数组b初始化后,得b[5]='',执行“b[5]=0;”后,把0代替b[5]中的','即可。最后输出整个字符串“Hello0you”。下面是正确解答:在C++语言中规定:以字符’0’作为字符串结束标志。语句“b[5]=0;”就相当于语句b[5]='\0',即在数组b的b[5]加上了字符串结束标志,故执行该语句后,数组中存放的内容变为Hello。