项目管理的约束条件是()。
A.预期利润
B.范围、时间和成本
C.人员和资金
D.质量
参考答案:B
解析:本题考查项目管理的约束条件。项目管理的约束条件是范围、时间和成本。
I certainly agree _____ your suggestion. But I wonder if all the members of the board will agree _____ the steps for the coming year.
A.to; with
B.to; on
C.on; with
D.on; on
设有定义语句: int x[6] = 2,4,6,8,5,7 , * p=x,i; 要求依次输出x数组6个元素中的值,不能完成此操作的语句是( )。
A.for(i=0; i <6;i++) printf("%2d",* (p++));
B.for(i =0;i <6;i ++ ) printf( "%2d" , * (p +i));
C.for(i =0;i <6;i ++ ) printf(" %2d" , * p ++ );
D.for(i =0;i <6;i ++ ) printf("%2d" ,( * p) ++ );