The most common types of schedules are Gantt charts, milestone charts, line of balance, and:
A.Networks.
B.Time phased events.
C.Calendar integrated activities.
D.A and C only.
E.B and C only.
第1题:
阅读下面代码 class InterestTest ______ ActionListener { … public void actionPerformed(ActionEvent event) { double interest=balance * rate/100: balance+=interest: NumberFormat format=NumberFormat.getCurrencyInstance(); System.out.printlb("balance="+Formatter.format(balance)); } Private double rate; } 在下画线处,应填入的正确选项是
A.implementation
B.inheritance
C.implements
D.extends
第2题:
A.右键--Cellcontent--Properties
B.右键--Properties--Cellcontent
C.右键--Properties--双击Charts1选项进行参数选择
D.Properties--右键--双击Charts1选项进行参数选择
第3题:
第4题:
The(12)defines the phases that connect the beginning of a project to its end.
A.schedule
B.project life cycle
C.temporary
D.milestone
第5题:
第6题:
写出下面代码的运行结果。def addInterest(balance,rate): newBalance=balance*(1+rate) balance=newBalance def main(): amount=1000 rate=0.05 addInterest(amount,rate) print (amount) main()