-Wherewouldyouliketogoonyoursummerholiday,Mike?
-I’dliketogo______.
A.nowhereinteresting
B.interestinganywhere
C.somewhereinteresting
D.interestingsomewhere
第1题:
–– Kate: Do you have to have that TV on quite so loud?
–– Mike:____. Is it bothering you?
–– Kate: Yes, I ’ m trying to sleep.
A: Oh, excuse me
B: Oh, I ’m sorry
C: No, I don ’t
D: Yes, I have to
第2题:
Ⅴ. Daily Conversation (10 points)
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. Can I take a message?
B. Not at all.
C. Please take it easy.
D. Is that OK? E. Nice to meet you.
F. Don't worry.
G. But he panned to. H. What can I do for you?
56. A: Hello. May I speak to Mike please?
B: Just a moment. Mike! ... Mike! ... I'm sorry. He is out.______?
第3题:
【单选题】以下是一些C#中的枚举型的定义,其中错误的用法有()(2 分)
A.public enum var1{ Mike = 100, Nike = “102”, Jike }
B.public enum var1{ Mike = 100, Nike, Jike }
C.public enum var1{ Mike=-1 , Nike, Jike }
D.public enum var1{ Mike , Nike , Jike }
第4题:
阅读下面代码 public class Arrays { public static void main(String[] args) { int[] a=new int[5]; for(int i=0;i<a.length;i=i+1)a[i]=10+i; for(int i=0;i<a.length;i=i+1)System.out.println(a[i]); String[] s={"Frank","Bob","Jim"}; for(int i=0;i<s.length;i=i+1)System.out.println(s[i]); s[2]="Mike"; System.out.println(s[2]); } } 代码运行正确的结果是
A.10 11 12 13 14 Mike Bob Frank Jim
B.11 12 13 14 15 Frank Bob Mike Jim
C.10 11 12 13 14 Frank Bob Jim Mike
D.11 12 13 14 15 Mike Jim Bob Frank
第5题:
ASP.NET中,在Web窗体页上注册一个用户控件,指定该控件的名称为”Mike”,正确的注册指令为()
A.<%@Register TagPrefix = “Mike” TagName = “Space2” Src = “myX.ascx”%>#B.<%@Register TagPrefix = “Space2” TagName = “Mike” Src = “myX.ascx”%>#C.<%@Register TagPrefix = “SpaceX” TagName = “Space2” Src = “Mike”%>#D.以上皆非