Direction: Pick out the appropriate expression from the eight choices and complete the following dialogue by blackening the corresponding letter on the answer sheet.A. What happened?B. Nice to meet you.C. please take it easy.D. No trouble at all.E. Coffee

题目

Direction: Pick out the appropriate expression from the eight choices and complete the following dialogue by blackening the corresponding letter on the answer sheet.

A. What happened?

B. Nice to meet you.

C. please take it easy.

D. No trouble at all.

E. Coffee, please.

F. I forgive you.

G. But he panned to.

H. Can I have the bill?

56. Tom: Hello, first let me introduce myself. I'm Tom Hall, I am in charge of MAP Advertising.

Tony: ______, I' m Tony Blair.

57. Student A: I am very grateful to you for taking so much trouble to explain the best way of getting there.

Student B: ______.

58. Child: Mom, I'm very sorry, really. I didn't mean to hurt you.

Mom: It's OK. ______. Do behave yourself next time!

59. Guest: Waiter! ______, please?

Waiter: Yes, sir. Here is the bill. The total is 200 yuan.

60. Doctor: ______? You don't look well.

Patient: I broke my left leg when climbing the mountain yesterday.


相似考题
更多“Direction: Pick out the appropriate expression from the eight choices and complete the fol ”相关问题
  • 第1题:

    publicclassTestOneimplementsRunnable{publicstaticvoidmain(String[]args)throwsException{Threadt=newThread(newTestOne());t.start();System.out.print(”Started”);t.join();System.out.print(”Complete”);}publicvoidrun(){for(inti=0;i<4;i++){System.out.print(i);}}}Whatcanbearesult?()

    A.Compilationfails.

    B.Anexceptionisthrownatruntime.

    C.Thecodeexecutesandprints“StartedComplete”.

    D.Thecodeexecutesandprints“StartedComplete0123”.

    E.Thecodeexecutesandprints“Started0l23Complete”.


    参考答案:E

  • 第2题:

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    解析: 本题考查考生对swithch(expression)语句的理解。表达式expression只能返回:int、bvte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第3题:

    在switch(expression)语句中,expression的数据类型不能是( )。 A.doubleB.char

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    A。【解析】本题考查考生对switch(expression)语句的理解。表达式expression只能返回int、byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第4题:

    在switch(expression)语句中,expression的数据类型不能是( )。

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    本题考查考生对switch(expression)语句的理解。表达式expression只能返回int、byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第5题:

    在switch(expression)语句中,expression的数据类型不能是( ),

    A.double

    B.char

    C.byte

    D.short


    正确答案:A
    解析:本题考查考生对switheh(expression)语句的理解。表达式expression只能返回:int、 byte、short和char,题目中的double是不正确的。同时还要注意,多分支结构中,case子句的值必须是常量,而且所有case子句中的值应是不同的,default子句是任选的。

  • 第6题:

    for重复结构处理计数器控制循环的所有细节。for结构的一般格式如下: for(expression1, expression2, expression3) statement 其中expression1初始化循环控制变量,expression2是循环条件,expression3递增控制变量。


    B