网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)
单选题
When carrying out mooring trial, if the M√Ecan’t start normally, you should ()
A

take a further inspection in the voyage

B

check and repair, then retrial

C

do as the surveyor’s requirement

D

retrial


参考答案

参考解析
解析: 暂无解析
更多 “单选题When carrying out mooring trial, if the M√Ecan’t start normally, you should ()A take a further inspection in the voyageB check and repair, then retrialC do as the surveyor’s requirementD retrial” 相关考题
考题 ( 24 )请阅读下面程序public class ThreadTest {public static void main ( String args[ ]){Thread t1 = new Thread ( new Hello ()):Thread t2 = new Thread ( new Hello ()):t l .start ():t2.start ();}}class Hello implements Runnable {int i ;public void run (){while ( true ) {System.out.println ( "Hello"+i++ ) ;if ( i=5 ) break :}}}该程序创建线程使用的方法是()A )继承 Thread 类B )实现 Runnable 接口C ) t l.start ()D ) t2.start ()

考题 It is fixed ________ at seven tomorrow morning.A、if we’ll start outB、that we’ll start outC、when we’ll start outD、are we going to start out

考题 publicclassTwoThreads{privatestaticObjectresource=newObject();privatestaticvoiddelay(longn){try{Thread.sleep(n);}catch(Exceptione){System.out.print(”Error);}}publicstaticvoidmain(String[]args){System.out.print(”StartMain);newThread1().start();delay(1000);Threadt2=newThread2();t2.start();delay(1000);t2.interruptdelay(1000);System.out.print(”EndMain);}staticclassThread1extendsThread{publicvoidrun(){synchronized(resource){System.out.print(”Startl);delay(6000);System.out.print(”End1);}}}staticclassThread2extendsThread{publicvoidrun(){synchronized(resource){System.out.print(”Start2);delay(2000);System.out.print(”End2);}}}}Assumethatsleep(n)executesinexactlymmilliseconds,andallothercodeexecutesinaninsignificantamountoftime.Whatistheoutputifthemain()methodisrun?()

考题 Runnabler=newRunnable(){publicvoidrun(){System.out.print(”Cat”);}};Threadt=newThread(r){publicvoidrun(){System.out.print(”Dog”);}};t.start();Whatistheresult?() A.CatB.DogC.Compilationfails.D.Thecoderunswithnooutput.E.Anexceptionisthrownatruntime.

考题 publicclassThreads4{publicstaticvoidmain(String[]args){newThreads4().go();}publicvoidgo(){Runnabler=newRunnable(){publicvoidrun(){System.out.print(”foo”);}};Threadt=newThread(r);t.start();t.start();}}Whatistheresult?()A.Compilationfails.B.Anexceptionisthrownatruntime.C.Thecodeexecutesnormallyandprints?foo”.D.Thecodeexecutesnormally,butnothingisprinted.

考题 ____does not belong to the mooring trial item.A.Generator sets running testB.Shafting intensity testC.The function test for pumps that serving for M.ED.M.E safety devices test

考题 When carrying out a parallel track search pattern,the course of the search units should normally be which of the following ________.A.In the same direction as the anticipated driftB.In the opposite direction of the anticipated driftC.Perpendicular to the line of anticipated driftD.Downwind

考题 _______ he got the news, Mr. Mathews hurried out of his house, _______ his car, and drove all the way to town.A.When; starteD.B.The moment; starteD.C.Until; starting D.Once; to start

考题 I had some difficulty in carrying out the plan.A: implementing B: changing C:keeping D: making

考题 Tom shut everyone out of the lab ____________ out the physical experiment.A.carry B.carried C.and carry D.carrying

考题 The hospital is carrying()tests to find out what’s wrong with her.AoverBoutCoffDaway

考题 Sailors should do mooring work when () harbour.A、enteringB、enterC、toenterD、entered

考题 norma has a form action that will allow users to create comments to the existing doc. When Norma views the form in her web browser, she sees the action. but when she opens the form in her notes client she cannot see the action . which one of the following should she do to correct the problom? ()A、delete old action and create a new one on the formB、Make sure the comments form is available for notes clients useC、Make the action a shared action and disable the hide-when setting for “web borwsers”D、Check the actions hide-when setting to make sure the action is available for “notes 4.6 later”

考题 单选题In the voyage, when carrying out abandon ship drill, should be test every time().A the emergency lighting system for muster and abandon shipB air/oil emergency shut-downC M-Eemergency operationD main/auxiliary steering gear changing

考题 单选题After repair, the voyage trial of the M-E should be done ()A after the mooring trial has passedB before the mooring trialC under the surveyors supervisionD after repair

考题 单选题Instructions for on-board maintenance of each life-saving appliance shall not include().A a checklist for use when carrying out the inspectionsB list of crew membersC maintenance and repair instructionsD schedule of periodic maintenance

考题 单选题When carrying out a parallel track search pattern,the course of the search units should normally be which of the following().A In the same direction as the anticipated driftB In the opposite direction of the anticipated driftC Perpendicular to the line of anticipated driftD Downwind

考题 单选题The rotating unit of a spilt windlass consists of a() with shaped snugs to grip the anchor cablea mooring drum for paying out or letting go of mooring wires and warp end for warping duties.A cranesB mooring barrelC capstansD cable lifter

考题 单选题public class TwoThreads {  private static Object resource = new Object();  private static void delay(long n) {  try { Thread.sleep(n); }  catch (Exception e) { System.out.print(”Error “); }  }  public static void main(String[] args) {  System.out.print(”StartMain “);  new Thread1().start();  delay(1000);  Thread t2 = new Thread2();  t2.start();  delay(1000);  t2.interrupt  delay(1000);  System.out.print(”EndMain “);  }  static class Thread 1 extends Thread {  public void run() {  synchronized (resource) {  System.out.print(”Startl “);  delay(6000);  System.out.print(”End1 “);  }  }  }  static class Thread2 extends Thread {  public void run() {  synchronized (resource) {  System.out.print(”Start2 “);  delay(2000);  System.out.print(”End2 “);  }  }  }  }  Assume that sleep(n) executes in exactly m milliseconds, and all other code executes in an insignificant amount of time. What is the output if the main() method is run?()A  Compilation fails.B  Deadlock occurs.C  StartMain Start1 Error EndMain End1D  StartMain Start1 EndMain End1 Start2 End2E  StartMain Start1 Error Start2 EndMain End2 End1F StartMain Start1 EndMain End1 Start2 Error End2

考题 单选题Make a phone call when you can't get home as usual,________ your parents will start to worry.A andB butC orD so

考题 单选题In the voyage, when carrying out abandon ship drill () should be test every time.A the emergency lighting system for muster and abandon shipB air oil emergency shut-downC ME emergency operationD main auxiliary steering gear changing

考题 单选题()does not belong to the mooring trial item.A generator sets running trialB shafting intensity trialC the trail for pumps that working for MED ME safety devices trial

考题 单选题When carrying out mooring trial, the () trial of the MEis not necessary.A startingB torsion vibrationC direction changingD running

考题 单选题When carrying out the voyage trial, the M-E is not necessary to take()trial.A startingB runningC running-inD direction changing

考题 单选题It should be noted()the use of synthetic mooring ropes able to produce sparks by their manipulation is absolutely forbidden on board petroleum tankers and LPG or LNG carriers,or any vessels carrying inflammable substances.A thatB whichC whoD these

考题 单选题Coast Guard approved buoyant work vests().A may be substituted for 10 percent of the required life preserversB should be stowed adjacent to lifeboats and emergency stationsC may be used by boat crews and line handlers during lifeboat drillsD should be used when carrying out duties near a weather deck's edge

考题 单选题When checking a mooring line,you should().A ensure the bight is not fouled between the ship and the dock by taking up slackB pay out slack smartly and keep free for runningC secure more turns to hold the line against any strain,then clear the areaD surge the line so that it maintains a strain without parting