Perhaps the biggest problem facing the project manager during integration activities within a matrix structure is:A . Coping with employees who report to multiple bossesB . Too much sponsorship involvementC . Unclear functional understanding of the techni

题目

Perhaps the biggest problem facing the project manager during integration activities within a matrix structure is:

A . Coping with employees who report to multiple bosses

B . Too much sponsorship involvement

C . Unclear functional understanding of the technical requirements

D . Escalating project costs

E . All of the above


相似考题
更多“Perhaps the biggest problem facing the project manager during integration activities withi ”相关问题
  • 第1题:

    Logistics means systematic management of()activities.

    A、variety

    B、vary

    C、various


    参考答案:C

  • 第2题:

    Integration ______ is the process of verifying that the components of a system work together as described in the program design an system design specification.

    A.trying

    B.checking

    C.testing

    D.coding


    正确答案:C
    解析:译文的含义是:集成()是这样的过程,它验证系统各个组成部分是否可以按照程序设计和系统设计规范的描述一起工作。选项A、B、C、D的含义分别是尝试、检查、测试、编码。选项C符合题意,为所选。

  • 第3题:

    They promote assimilation of ethnic groups into the main-stream culture.

    A: policy
    B: value
    C: equality
    D: integration

    答案:D
    解析:
    句意:他们倡导将种族文化融入到主流文化中。assimilation意为“同化,吸收”,与integration(融合,整合)意思比较相近。policy政策,方针;value价值;equality平等,相等。

  • 第4题:

    [A] During

    [B] For

    [C] At

    [D] Since


    正确答案:B
    22.B这四个介词都可以用来表示时间,但用法却不尽相同。during在 …期间,当…之时,用来表示一段时间;for持续达,计,后面常跟具体的时间段,如:for five months;at在…时刻,通常指时间的某一点,如at eight o'clock;smce自从…之后,要与现在完成时连用。根据句意“这艘巡洋舰三十九年以来就一直沉于海底”可知,此处需要一个表示时间段的介词,且能够与“三十九年”搭配,只有 for符合要求,故选B。

  • 第5题:

    They promote assimilation of ethnic group into the main-streams culture.

    A: policy
    B: value
    C: equality
    D: integration

    答案:D
    解析:
    句意:他们推动少数民族部落融入到主流文化中。画线单词assimilation意为“融合”。A项policy意为“政策”;B项value意为“价值,意义”;C项equality意为“同等,平等”;D项integration意为“整合,融合,一体化”,与画线单词意义相近。故本题选D。

  • 第6题:

    已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?

    A.Manager::Manager(int n):id(n){}

    B.Manager::Manager(int n){id=n;}

    C.Manager::Manager(int n):Employee(n){}

    D.Manager::Manager(int n){Employee(n);}


    Manger::manger(int n):Employee(n){}