新赛欧的轮胎气压按规定至少()个月检查一次充气压力均为()kPa。
A、半月,180
B、1月,300
C、1月,230
D、2月,300
参考答案:C
下列属于衡量项目特有风险方法的有( )。
A.敏感性分析
B.情景分析
C.蒙特卡洛模拟分析
D.假想分析
阅读下列程序。Option Base 1Private Sub Form _Click()Dim x(3,3)For j=1 to 3For k=l to 3If j=k then x(j,k)=1If j<>k then x(j,k)=kNext kNext iCall fun(x())End SubPrivate Sub fun(x())For j=1 to 3For k=1 to 3Print x(j,k);Next kNext jEnd Sub运行程序时,输出结果为 【14】 。