I'm Michael Bush, Managing Director of Hoogle Engineering. I am pleased to welcome you here to our website and I'd like to tell you a little about the company and its organization. Hoogle EngineeringIm Michael Bush, Managing Director of Hoogle Engineering

题目
I'm Michael Bush, Managing Director of Hoogle Engineering. I am pleased to welcome you here to our website and I'd like to tell you a little about the company and its organization. Hoogle Engineering

I'm Michael Bush, Managing Director of Hoogle Engineering. I am pleased to welcome you here to our website and I'd like to tell you a little about the company and its organization. Hoogle Engineering was set up in 1960. It was divided into several departments at that time, such as the sales department, marketing department, and production department. Lots of managers were employed to manage it all.

Fortunately things are different now. Sixty people are employed by Hoogle and communication between departments is considered to be one of the most important aspects of the business. The market is global so we need to make contact with customers worldwide, not just locally.

But in the old days we were all in different departments and never spoke to each other. We had a tall structure. Traditionally we had people at the first level on the shop floor, manufacturing products according to the instructions which they were given. Then you had a supervisory level of people who supervised them every day. Then you moved up to the middle management, who were doing the tasks of getting new business, and then you had the senior management team, and then you had the board, who decided the business strategy. So there were a lot of levels in the company in the old days actually.

The structure today is that we form. teams within teams to place people who can manufacture a product. Each team has members that can manufacture different products. The actual teams now are self-managing, so we don't even have team leaders. You've got the teams, and then you've got two people, only two people, who are what you think of as management. This is generally called flat structure.

21. Hoogle Engineering was set up in().

A. the nineteenth century

B. the twentieth century

C. the twenty first century

22. There are many different()of management in a tall structure.

A. kinds

B. levels

C. functions

23. People in a flat structure usually work in().

A. departments

B. families

C. teams

24. All of the following statements are true according to the passage EXCEPT that().

A. communication in the company is becoming more and more important

B. the author thinks the two structures have the same functions

C. there are more individual responsibilities in the flat structure

25. The best title for the passage is().

A. Organization Structure in Hoogle Engineering

B. History of Hoogle Engineering

C. Success in Hoogle engineering


相似考题
更多“I'm Michael Bush, Managing Director of Hoogle Engineering. I am pleased to welcome you here to our website and I'd like to tell you a little about the company and its organization. Hoogle Engineering ”相关问题
  • 第1题:

    In my opinion, you’d better have a good rest.______________.

    A. I’ll take your advice.

    B. Let me see.

    C. I’m afraid so.

    D. Never mind


    正确答案:A

  • 第2题:

    有以下程序

    #nclude<stdio.h>

    #include<string.h>

    main()

    { char a[5][10]={"china","beijing","you","tiananmen","welcome"};

    int i,j;char t[10];

    for(i=0;i<4;i++)

    for(j=i+1;j<5;j++)

    if(strcmp(a[i],a[j])>0)

    {strcpy(t,a[i]);strcpy(a[i],a[j]);strcpy(a[j],t);}

    puts(a[3]);

    }

    程序运行后的输出结果是

    A.beijing

    B.china

    C.welcome

    D.tiananmen


    正确答案:C
    解析:本题中程序的主要实现的功能是对这个字符数组,对其中的字符串按照首字母的从小到大排序,排完序后a[5][10]为{"beijing","china","tiananmen","welcome","you"},所以a[3]为welcome。

  • 第3题:

    2.—How _______you?

    —I_______ fine, thanks.

    A.are;is

    B.are; am

    C.are;are

    D.is,am


    正确答案:B
    2.B[解析】人称不同对应be动词的形式不同,第一人称1对应am,第二人称you对应are,故选B。

  • 第4题:

    有以下程序: #include<stdio.h> #include<string.h> main( ) { char a[5][10]={"china","beijing","you","tiananmen","welcome"); int i,j;char t[10]; for(i=0;i<4;i++) for(j=i+1;j<5;j++) if(strcmp(a[i],a[j]>O) {strcpy(t,a[i]);strepy(a[i],a[j]);strcpy(a[j],t)}; puts(a[3]); } 程序运行后的输出结果是( )。

    A.beijing

    B.china

    C.welcome

    D.tiananmen


    正确答案:C
    此题涉及数组,字符串的比较和字符串的复制,因为for循环中控制数组中的i和j,即控制了其中的数组中的元素,而stremp是比较字符串的大小,如果stremp(a[i],a[j])>0,则将字符串进行复制,所以答案为C。

  • 第5题:

    试题32

    有以下程序

    #include <stdio.h>

    #include <string.h>

    main()

    { char a[5][10]={“china”, “beijing”, “you”, “tiananmen”, “welcome”};

    int i,j; char t[10];

    for(i=0; i<4; i++)

    for(j=i+1; j<5; j++)

    if(strcmp(a[i], a[j])>0)

    { strcpy(t, a[i]); strcpy(a[i],a[j]); strcpy(a[j], t);}

    puts(a[3]);

    }

    程序运行后输出结果是()

    A.beijing

    B.china

    C.welcome

    D.tiananmen


    正确答案:C
    试题32分析
    strcmp(s1,s2)函数,如果s1>s2,结果大于0;如果s1=s2,结果等于0;如果s1<s2,结果小于0;strcpy(t, a[i])是将a[i]的值复制给t。
    for(i=0; i<4; i++)
    for(j=i+1; j<5; j++)
    if(strcmp(a[i], a[j])>0)
    { strcpy(t, a[i]); strcpy(a[i],a[j]);  strcpy(a[j], t);}是将字符串按第一个字母的顺序进行从小到大的排列。所以最后的顺序为:“beijing”,“china”,“tiananmen”,“welcome”,“you”。
    试题32答案
    C

  • 第6题:

    英文科技论文写作中应该尽量少用或不用I, we, our, 和you等第一、第二人称代词。


    D