更多“– Hello, I’m David Chen.Nice to meet you.-- ( )A、Are you?B、Nice to meet you too.C、Yes. ”相关问题
  • 第1题:

    Many are finding it difficult to make ____ meet, especially whose with young children.

    a. end

    b. an end

    c. ends


    参考答案:C

  • 第2题:

    I can’t wait ______ the pop singer.

    A: met

    B: to meet

    C: meeting

    D: meet


    参考答案:B

  • 第3题:

    – David, you've been losing your temper over nothing lately.– ( ).

    A. I haven’t been getting much sleep either

    B. You’d better not push yourself too hard, or you’ll get sick

    C. I’m sorry. I shouldn’t have blown up like that

    D. You’d better do exercises regularly


    正确答案:C

  • 第4题:

    It will ( ) your expectations and we offer a full guarantee for three years.

    A.satisfy with

    B.satisfy

    C.meet with

    D.meet


    答案:D

  • 第5题:

    You didn’t need to describe her. I ___her several times.

    A.had met

    B. have met

    C. met

    D. meet


    正确答案:B

  • 第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。