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.
第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”.
第2题:
在switch(expression)语句中,expression的数据类型不能是( )。
A.double
B.char
C.byte
D.short
第3题:
在switch(expression)语句中,expression的数据类型不能是( )。
A.double
B.char
C.byte
D.short
第4题:
在switch(expression)语句中,expression的数据类型不能是( )。
A.double
B.char
C.byte
D.short
第5题:
在switch(expression)语句中,expression的数据类型不能是( ),
A.double
B.char
C.byte
D.short
第6题:
for重复结构处理计数器控制循环的所有细节。for结构的一般格式如下: for(expression1, expression2, expression3) statement 其中expression1初始化循环控制变量,expression2是循环条件,expression3递增控制变量。