When I leave university in July, I don’t want to get a job straightaway. I’ve worked hard for 3 years, and now I need a long holiday. I’ll have to work for the rest of my life, so now is a good time to take a break. I’d like to travel around the world for a few months. I抳e already bought a ticket to go and visit my relatives in New Zealand. I leave on August 14th. I plan to work there for a while. On the way back from there I hope to visit an old friend of mine in America, and I want to go to Canada as well. I might stop in some other places, too. I haven抰 decided yet. When I finish travelling, I will have to get a job. I studied economics at Bristol University, and my father works in a bank, so I抣l probably work there at first. I?m not looking forward to that, but I want to buy a house one day, so I’ll have to earn some money.
(1). I want to get a job as soon as possible.
A、 Right
B、Wrong
(2). I’ll first go to New Zealand.
A、 Right
B、Wrong
(3). I have relatives in America.
A、 Right
B、Wrong
(4). I’ll probably work in a bank.
A、 Right
B、Wrong
(5). I’ll earn some money to travel around the world.
A、 Right
B、Wrong
第1题:
–– Host: Jack, come and sit in the sofa. Dinner will be ready in a minute. Could I get you something to drink?
–– Guest: ____.
A: No, don ’t trouble. I ’ve drunk enough
B: No, you couldn't. I'm not thirsty
C: Yes, you could. I ’d like some Coca cola
D: Yes, please. I'd like some Sprite
第2题:
-- Ann is in hospital.
-- Oh, really? I __ know. I __ go and visit her.
A. didn’t; am going to B. don’t; would
C. don’t; will D. didn't; will
第3题:
他(Tā) 没(méi)有(yǒu) 喝(hē) A 咖(kā)啡(fēi) B,他(tā) 喝(hē) C 很(hěn)多(duō)红(hóng)茶(chá)D。
A.他(Tā) 没(méi)有(yǒu) 喝(hē) 了 咖(kā)啡(fēi) ,他(tā) 喝(hē) 很(hěn)多(duō)红(hóng)茶(chá)。
B.他(Tā) 没(méi)有(yǒu) 喝(hē) 咖(kā)啡(fēi) 了,他(tā) 喝(hē)很(hěn)多(duō)红(hóng)茶(chá)。
C.他(Tā) 没(méi)有(yǒu) 喝(hē) 咖(kā)啡(fēi) ,他(tā) 喝(hē) 了 很(hěn)多(duō)红(hóng)茶(chá)。
D.他(Tā) 没(méi)有(yǒu) 喝(hē) 咖(kā)啡(fēi) ,他(tā) 喝(hē) 很(hěn)多(duō)红(hóng)茶(chá)了。
第4题:
I______to be a scientist when I______ a boy.
A、wanted, was
B、want, am
C、wanted, am
D、want, was
第5题:
输入hello↙,写出下面程序的运行结果。 #include <stdio.h> #include <string.h> int main() { char s[80],t[200]; int i,sl ; gets(s); sl = strlen(s); for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ; for (i=0; i<sl; i++) t[sl+i] = s[i]; t[sl+i]='0' ; puts(t); return 0; }
第6题:
【填空题】下面程序的运行结果是 。 #include<stdio.h> main() {int i,t,sum=0; for(t=i=1;i<=10;) {sum+=t;++i; if(i%3==0) t=-i; else t=i; } printf("sum=%d",sum); }