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 E

题目

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


相似考题
参考答案和解析
参考答案:CCBAC
更多“Mary has just returned to the USA after studying in England for three years. She decid ”相关问题
  • 第1题:

    Jim ______already ______in this school for two years.

    A、was; studying

    B、will; study

    C、has; studied

    D、are; studying


    正确答案:C

  • 第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


    B 结构体成员的引用;s[0].a=1,s[1].b=5,所以结果为6

  • 第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


    B 结构体成员的引用;s[0].a=1,s[1].b=5,所以结果为6

  • 第4题:

    --Hello,is that Mrs.Black speaking?
    --Yes,who's that?
    --Mary.

    A.I'm
    B.That's
    C.She's
    D.This is

    答案:D
    解析:
    打电话需用打电话的专门用语,如问对方是谁,不能用“Who are you”,而要用“Who's that”。回答时也不能用“I'm…”,而要用“This is…”。做这类题千万不能按汉语的表达方法去套用。

  • 第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


    B 结构体成员的引用;s[0].a=1,s[1].b=5,所以结果为6

  • 第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; }


    2