The project manager must be concerned with building a closely knit team. During the project kickoff meeting, the project manager can get a good start at team building by providing the team with:
A . Proposed salary increases if the project is successful
B . Bonuses for early completion date
C . A promise of future assignments
D . Well-defined project objectives
E . Linear responsibility charts
第1题:
Software Engineering is best described as ( ).
A.the practice of designing, building, and maintaining off-the-shelf software from prefabricated parts
B.the practice of designing, building, and maintaining ad-hoc software without the use of formal methods
C.the practice of designing, building, and maintaining reliable and cost-effective software using standard techniques
D.the practice of designing, building, and maintaining fast and flexible software specifically for engineering applications
第2题:
第3题:
第4题:
No navigational aids are shown and the chart is not kept corrected for alterations in depths inside the pecked lines. For more detailed information,the larger scale charts must be ______.
A.referred to
B.appreciated
C.met with
D.concerned
第5题:
第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);}