网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

-Wherewouldyouliketogoonyoursummerholiday,Mike?

-I’dliketogo______.

A.nowhereinteresting

B.interestinganywhere

C.somewhereinteresting

D.interestingsomewhere


参考答案

更多 “ -Wherewouldyouliketogoonyoursummerholiday,Mike?-I’dliketogo______.A.nowhereinterestingB.interestinganywhereC.somewhereinterestingD.interestingsomewhere ” 相关考题
考题 Dialogue one Tom: Do you go to college?Mike: Yes. __1__Tom: What college do you go to?Mike: I go to Pasadena City College.Tom: Do you like it?Mike: Oh, yes. __2__Tom: why do you like it?Mike: Because it has great teachers.Tom: __3__Mike: I like all my classmates, too.Tom: Anything else? Mike: Yes. __4__A. It’s not expensive!B. You bet.C. I think I do.D. what else?1______2______3______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 JimB.11 12 13 14 15 Frank Bob Mike JimC.10 11 12 13 14 Frank Bob Jim MikeD.11 12 13 14 15 Mike Jim Bob Frank

考题 27._______are broken.A. Mike's shoes and kiteB. Mike's watch and knifeC. Ann's shoes and kiteD. Tom's things

考题 When I first knew Mike, we lived in a small village in Scotland. It was very different from Mike’s life in London now. We went to school together on our bicycles. Every morning I went to his house and knocked on the door. Every morning Mike’s mum said, “I’m sorry, he’s a bit late this morning”, and so I had to wait. Each day we were late for school, and I remember the teacher got very annoyed with us. I never told her we were late because of Mike. Now, 25 years later, I play tennis with Mike. I usually drive him to the tennis club. I go to his flat and he opens the door and says, “I’m sorry. I’m a bit late today.” The only reason he wasn’t late for his own wedding is that we lied to him about the time! As boys we spent a lot of time out exploring on our bikes. We went walking and fishing. I didn’t like fishing because I couldn’t swim. Probably the funniest thing we did was when we stole a bottle of whiskey from my Dad. We cycled about 5 miles away to drink it in one of our favorite places. When we finished drinking it, we couldn’t cycle back – it was a long, slow walk. I’m sure we looked awful. We still do, when we come back from the pub on Friday nights. Nothing’s changed really. Oh, and I still can’t swim.1.Mike now lives in __________.A.a village in ScotlandB.a village near LondonC.London2.__________ got up late every morning.A.Mike’mumB.MikeC.I3.25 years later, Mike __________.A.is early in doing everythingB.still is late as in the pastC.is never late again4.As boys both of us liked __________.A.fishingB.swimmingC.riding bicycles5.We walked 5 miles back home because we __________.A.were drunkB.were tiredC.enjoyed walking

考题 –– 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 meB: Oh, I ’m sorryC: No, I don ’tD: Yes, I have to

考题 阅读下面代码 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 JimB.11 12 13 14 15 Frank Bob Mike JimC.10 11 12 13 14 Frank Bob Jim MikeD.11 12 13 14 15 Mike Jim Bob Frank

考题 Ⅴ. 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.______?

考题 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.以上皆非

考题 【单选题】以下是一些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 }