当Stop、Main和Abort Handler运行结束后Check Handler的条件满足或发出Reset命令,SCM将运行()。A、Stop HandlerB、Check HandlerC、Abort HandlerD、Hold Handler
当Stop、Main和Abort Handler运行结束后Check Handler的条件满足或发出Reset命令,SCM将运行()。
- A、Stop Handler
- B、Check Handler
- C、Abort Handler
- D、Hold Handler
相关考题:
对于一个正常运行的 C 程序,以下叙述中正确的是A) 程序的执行总是从 main 函数开始,在 main 函数结束B) 程序的执行总是从程序的第一个函数开始,在 main 函数结束C) 程序的执行总是从 main 函数开始,在程序的最后一个函数中结束D) 程序的执行总是从程序的第一个函数开始,在程序的最后一个函数中结束
If anything abnormal be found on the load change of main engine when the ship is entering in shallow waterway, before taking measures the engineer on duty should _______.A.stop main engine immediatelyB.ask the captain and the chief engineer's permission for stopping the engineC.inquire the bridge for the situation initiativelyD.stop engine and inform bridge
When received the order "Finished With Engine", which of the following operations is wrong?A.stop the L.O pump, S.W pump, jacket water cooling pump immediatelyB.stop the F.O booster pumpC.engage the turning gear, turn the main engineD.open the main engine scavenge air trunk's drain cocks
下面程序运行结束后,k的值为________。include iostream.hvoid main( ){int i,j,k;for(i=0;j=10;i=j;i++,j--)k=i+j;coutk;}
单选题The() is fitted in pair one is the main valve, the other the auxiliary or standby.Amain stem stop valveBauxiliary steam stop valveCfeed check or control valveDblow down valve
单选题The()is fitted in the main steam supply line and is usually of the non-return type.Amain steam stop valveBauxiliary steam stop valveCfeed check or control valveDblow down valve
填空题下列程序的运行结果是()。 Program main implicit none integer ::a=1 integer ::b=2 call add ( a ) Call add ( b) Write(*,*) a , b Stop end Subroutine add (sum) Implicit none integer :: sum sum=sum+1 Return end