单选题A new coil of nylon line should be opened by().Apulling the end up through the eye of the coilBtaking a strain on both endsCuncoiling from the outside with the coil standing on endDunreeling from a spool

单选题
A new coil of nylon line should be opened by().
A

pulling the end up through the eye of the coil

B

taking a strain on both ends

C

uncoiling from the outside with the coil standing on end

D

unreeling from a spool


参考解析

解析: 暂无解析

相关考题:

Given:Which code, inserted at line 16, correctly retrieves a local instance of a Point object?() A.Point p = Line.getPoint();B.Line.Point p = Line.getPoint();C.Point p = (new Line()).getPoint();D.Line.Point p = (new Line()).getPoint();

During fueling,all doors,hatches,and ports ______.A.to windward should be opened and the ones to leeward should be closedB.to leeward should be opened and the ones to windward should be closedC.should be openedD.should be closed

When paying out nylon line from around the bitts ______.A.stand clear of the bitts and use two or more round turns under your figure eightsB.you can surge the line even with a single turnC.no extra turns are necessary since nylon has a high coefficient of frictionD.stand in the bight of the line

A new coil of nylon line should be opened by ______.A.pulling the end up through the eye of the coilB.taking a strain on both endsC.uncoiling from the outside with the coil standing on endD.unreeling from a spool

Faking a line means to______.A.arrange it on deck in long bightsB.stow it belowC.coil it down on deckD.put a whipping on it

If kinking results while wire rope is being coiled clockwise, you should______.A.coil it counterclockwiseB.not coil itC.take a turn underD.twist out the kinks under a strain

In order to correctly open a new coil of manila line , you should______.A.pull the tagged end from the top of the coilB.pull the tagged end through the eye of the coilC.secure the outside end and unroll the coilD.unreel the coil from a spool

()should be greased every month or two and it should be kept on a reel when not in use.A、Wire ropeB、Hemp ropeC、Nylon ropeD、Wooden rope

10. class Line {  11. public static class Point { }  12. }  13.  14. class Triangle {  15. // insert code here  16. }  Which code, inserted at line 15, creates an instance of the Point class defined in Line?() A、 Point p = new Point();B、 Line.Point p = new Line.Point();C、 The Point class cannot be instatiated at line 15.D、 Line 1 = new Line() ; 1.Point p = new 1.Point();

单选题Nylon line is NOT suitable for().AtowingBlashingsCstoppersDmooring lines

单选题A new coil of nylon line should be opened by().Apulling the end up through the eye of the coilBtaking a strain on both endsCuncoiling from the outside with the coil standing on endDunreeling from a spool

单选题Compared to manila line,size for size, nylon line().Ahas less strength than manila lineBhas more strength than manila lineCis equivalent to manila lineDwill rot quicker than manila line

单选题If a voltmeter is connected across a line, it must be protected with a()AshuntBhigh-resistance coil in the armature circuitClow-resistance coil in the armature circuitDshunt and a coil of high resistance

单选题On small sailing vessels,the PRIMARY reason for using nylon in a combination chain-nylon anchor line is to().Aprovide elasticityBincrease the strengthCreduce the costDreduce the weight

单选题Which statement is TRUE about nylon line?()AManila line will usually last longer than nylon lineBNylon line is excellent for use in alongside towingCA normal safe working load will stretch nylon line 50%DNylon stoppers should be used with nylon line

单选题Nylon line is better suited than manila for().Atowing alongsideBtowing asternCholding knots and splicesDresisting damage from chemicals

单选题10. class Line {  11. public static class Point { }  12. }  13.  14. class Triangle {  15. // insert code here  16. }  Which code, inserted at line 15, creates an instance of the Point class defined in Line?()A Point p = new Point();B Line.Point p = new Line.Point();C The Point class cannot be instatiated at line 15.D Line 1 = new Line() ; 1.Point p = new 1.Point();

单选题What type of stopper would you use on a nylon mooring line? ()AChainBNylonCManilaDWire

单选题Once a fire is detected the engine should be slowed downOn no account ().Athe trunking should be opened upBshould the trunking be opened upCthe trunking should not be opened upDshould the trunking not be opened up

单选题Nylon line can be dangerous because it().Abreaks down when wetBkinks be dischargedCis not elasticDstretches

单选题When paying out nylon line from around the bitts().Astand clear of the bitts and use two or more round turns under your figure eightsByou can surge the line even with a single turnCno extra turns are necessary since nylon has a high coefficient of frictionDstand in the bight of the line

单选题Given: Which code, inserted at line 15, creates an instance of the Point class defined in Line?()A Point p = new Point();B Line.Point p = new Line.Point();C The Point class cannot be instatiated at line 15.D Line l = new Line() ; l.Point p = new l.Point();

单选题During fueling,all doors,hatches,and ports().Ato windward should be opened and the ones to leeward should be closedBto leeward should be opened and the ones to windward should be closedCshould be openedDshould be closed

单选题During fueling, all doors. Hatches,and ports().Ato windward should be opened and the ones to leeward should be closedBto leeward should be opened and the ones to windward should be closedCshould be openedDshould be closed

单选题When fueling has been completed().Athe fuel tank fill pipe should be left open to allow vapors to vent from the tankBthe engine should be started immediately to prevent vapor lock in the fuel lineCall hatches should be opened and all compartments should be ventilatedDopen the fuel line and drain a small amount of gasoline into the bilge to clear the line of sediment

单选题In order to correctly open a new coil of manila line,you should().Apull the tagged end from the top of the coilBpull the tagged end through the eye of the coilCsecure the outside end and unroll the coilDunreel the coil from a spool

单选题The disadvantage of using three strand nylon line for towing is its().Ainherent weaknessBtendency to rot if left dampCdanger to crew if it partsDstrength and shock absorbing abilities

单选题You are creating a Windows Communication Foundation (WCF) service that is implemented as follows. (Line numbers are included for reference only.) 01 [ServiceContract] 02 [ServiceBehavior(IncludeExceptionDetailsInFaults = true)] 03 public class OrderService 04 { 05 [OperationContract] 06 public void SubmitOrder(Order anOrder) 07 { 08 try 09 { 10 ... 11 } 12 catch(DivideByZeroException ex) 13 { 14 ... 15 } 16 } 17 } You need to ensure that the stack trace details of the exception are not included in the error information sent to the client. What should you do?()AReplace line 14 with the following line: throw;BReplace line 14 with the following line: throw new FaultException(anOrder, ex.ToString());CAfter line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw ex;DAlter line 05, add the following line: [FaultContract(typeof(FaultException))] Replace line 14 with the following line: throw new FaultException(anOrder, Divide by zero exception);