Mary has just returned to the USA after studying in England far 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,s family better. She studied

题目

Mary has just returned to the USA after studying in England far 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,s 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's 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.the USA

C.France

2. She studied at___untverstty.

A.a British

B.an American

C.a Chinese

3. Mast probably, her grandmother_________

A. worked in the college

B. studied English Literature

C. lived in London

4. Her friend's brother recommended her to________

A. study for her MBA

B. study in the college

C. work for his company

5. Mary would return to Europe to_.

A. study

B. spend her holiday

C. work


相似考题
更多“Mary has just returned to the USA after studying in England far three years. She deci ”相关问题
  • 第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