Mary has just returned to the USA after studying in England for three years. She decided to study at a British university rather than an American one because her mother is from England and she wanted to get to know her mother抯 family better. She studied English Literature at Goldsmiths?College, which is in London. She lived with her grandmother while she was studying. The college was recommended by a friend抯 brother who had studied in England for his MBA. Mary told her friends that she was going to return to Europe to work because she had enjoyed her time in England so much.
(1). Mary is now in ().
A、 England
B、France
C、the USA
(2). She studied at () university.
A、a Chinese
B、an American
C、a British
(3). Most probably, her grandmother ().
A、 worked in the college
B、lived in London
C、studied English Literature
(4). Her friend’s brother recommended her to ().
A、 study in the college
B、study for her MBA
C、work for his company
(5). Mary would return to Europe to ().
A、 study
B、spend her holiday
C、work
第1题:
Jim ______already ______in this school for two years.
A、was; studying
B、will; study
C、has; studied
D、are; studying
第2题:
运行下列程序段,输出结果是() struct country { int num; char name[10]; }x[5]={1,"China",2,"USA",3,"France',4,"England",5,"Spanish"}; struct country *p; p=x+2; printf("%d, %c", p->num,(*p).name[2]);
A.3,a
B.4,g
C.2,U
D.5,s
第3题:
运行下列程序段,输出结果是()。 struct country { int num; char name[10]; }x[5] = {1,”China”,2,”USA”,3,”France”,4,”England”,5,”Spanish”}; struct country *p; p= x+2; printf(“%d,%c”,p->num,(*p).name[2]);
A.3,a
B.4,g
C.2,U
D.5,S
第4题:
第5题:
5、运行下列程序段,输出结果() struct country { int num; char name[10]; }x[5]={1,"China",2,"USA",3,"France",4, "England",5, "Spanish"}; struct country *p; p=x+2; printf("%d,%c",p->num,(*p).name[2]);
A.3,a
B.4,g
C.2,U
D.5,S
第6题:
【填空题】运行下列程序段,输出结果是____。 #include <iostream> using namespace std; struct country { int num; char name[20]; }x[5]={1, "China", 2, "USA", 3, "France", 4, "England", 5, "Spanish"}; void main() { struct country *p; p=x+2; cout<<p->num<<','<<x[0].name<<endl; }