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

题目内容 (请给出正确答案)
单选题
The usual method of arranging a line on deck so that it will run out easily without kinking or fouling is().
A

coiling the line

B

faking down the line

C

flemishing the line

D

racking the line


参考答案

参考解析
解析: 暂无解析
更多 “单选题The usual method of arranging a line on deck so that it will run out easily without kinking or fouling is().A coiling the lineB faking down the lineC flemishing the lineD racking the line” 相关考题
考题 Click the Exhibit button. Given:Which statement is true if a TestException is thrown on line 3 of class B? () A.Line 33 must be called within a try block.B.The exception thrown by method1 in class A is not required to be caught.C.The method declared on line 31 must be declared to throw a RuntimeException.D.On line 5 of class A, the call to method2 of class B does not need to be placed in a try/catch block.

考题 __________ ,he can' t go out for a walk as usual.A、With so much work to doB、With so much work doingC、With so much work doneD、Without so much work to do

考题 Given:When the doSomething method is called, after which line does the Object created in line 5 become available for garbage collection?() A.Line 5B.Line 6C.Line 7D.Line 8E.Line 9F.Line 10

考题 To "shore up" the main deck for the stowage of deck cargo means to ______.A.weld pad eyes on deck in proper position to secure the cargoB.strengthen the main deck by placing pillars underneath it in the tween-decksC.distribute the weight of the cargo by placing fore-and-aft planks on the main deckD.package the cargo in wooden crates so it will not damage the deck

考题 Where the cargo can be loaded in two different ways,one of which is more economical of space than the other,but each of which is a usual method of loading cargo of the relevant type,the Charterer ______ in whichever of these ways he pleases,unless he is expressly forbidden so to do by the charter-party.A.Has to loadB.Can loadC.LoadsD.Is loaded by

考题 The Charterers to have the privilege of loading a full cargo on deck and/or on hatches in accordance with _______ at their expense.A.common customB.marine usual doingC.normal marine practiceD.general and convenience usage

考题 A deck fitting,used to secure line or wire rope,consisting of a single body with two protruding horns is called a ______.A.BittB.BollardC.CapstanD.Cleat

考题 Which statement about the deck line is TRUE ________.A.The top of the deck line is marked at the highest point of the freeboard deck,including camber,at the midships pointB.A vessel with wooden planks on a steel deck will have the deck line marked at the intersection of the upper line of the wood sheathing with the side shellC.The deck edge is marked at the intersection of the freeboard deck with the side shell,at the lowest point of sheer,with the vessel at even trimD.On a vessel with a rounded stringer-sheer plate,the deck line is marked where the stringer plate turns down from the plane of the deck line

考题 Laying out a line in successive circles flat on deck with the bitter end in the center is known as ______.A.coilingB.fakingC.flemishingD.Lining

考题 In multipoint networks , there are tree persistence methods when a station finds a channel busy.in the 1-persistent method,after the station finds the line idle,it sends its frame immediately.this method has the ( ) chance of collision because two or more stations may find the line (请作答此空) and send their frames immediately. In the nonpersistent method , a station that has a frame to send ( ) the line . If the line is idle , it sends immediately If the line is not idle , it waits a ( ) amount of time and then senses the line again.The nonpersistent approach ( ) the chance of collision because it is unlikely that two or more stations will wait the same amount of time and retry to send simultaneously The p-persistent approach combines the advantages of the other two strategies . It reduces the chance of collision and improves efficiency.A.idle B.busy C.useful D.unusable

考题 public class X {  public object m () {   object o = new float (3.14F);   object oa = new object [1];   oa[0]= o;   o = null;   return oa[0];   }   }   When is the float object created in line 3, eligible for garbage collection?()A、 Just after line 5B、 Just after line 6C、 Just after line 7 (that is, as the method returns)D、 Never in this method.

考题 11. public void addStrings(List list) {  12. list.add(”foo”);  13. list.add(”bar”);  14. }  What must you change in this method to compile without warnings?() A、 add this code after line 11: list = (List) list;B、 change lines 12 and 13 to: list.add(”foo”); list.add(”bar”);C、 change the method signature on line 11 to: public void addStrings(List extends String list) {D、 change the method signature on line 11 to: public void addStrings(List super String list) {E、 No changes are necessary. This method compiles without warnings.

考题 1. public class a {  2. public void method1() {  3. try {  4. B b=new b();  5. b.method2();  6. // more code here  7. } catch (TestException te) {  8. throw new RuntimeException(te);  9. }  10. }  11. }  1. public class b {  2. public void method2() throws TestException {  3. // more code here  4. }  5. }  1. public class TestException extends Exception {  2. }  Given:  31. public void method() {  32. A a=new a();  33. a.method1();  34. }  Which is true if a TestException is thrown on line 3 of class b?()A、 Line 33 must be called within a try block.B、 The exception thrown by method1 in class a is not required to be caught.C、 The method declared on line 31 must be declared to throw a RuntimeException.D、 On line 5 of class a, the call to method2 of class b does not need to be placed in a try/catch block.

考题 Ships often become ()(脏). So cleaning is a frequent job on board.A、cleanB、clawC、dirtyD、deck

考题 Take to the forecastle deck an ()(油壶)and a hammer.A、oil canB、ropeC、heavy lineD、head line

考题 道岔中心线表示法 method of indicating the center line of turnout

考题 Which of the following is a secure method of remote access via command line?()A、RCPB、TelnetC、RSHD、SSH

考题 单选题The best method of protecting that portion of a fiber anchor line nearest the anchor from chafing on the bottom is by().A Using a small scope ratioB Replacing that portion with a short length of chainC Using a hockle to keep that portion of the anchor line off the bottomD Using a synthetic line

考题 单选题Given: When the doSomething method is called, after which line does the Object created in line 5 become available for garbage collection?()A Line 5B Line 6C Line 7D Line 8E Line 9F Line 10

考题 单选题public class X {  public object m () {   object o = new float (3.14F);   object oa = new object [1];   oa[0]= o;   o = null;   return oa[0];   }   }   When is the float object created in line 3, eligible for garbage collection?()A  Just after line 5B  Just after line 6C  Just after line 7 (that is, as the method returns)D  Never in this method.

考题 单选题To “shore up” the main deck for the stowage of deck cargo means to().A weld pad eyes on deck in proper position to secure the cargoB strengthen the main deck by placing pillars underneath it in the tween-decksC distribute the weight of the cargo by placing fore-and-aft planks on the main deckD package the cargo in wooden crates so it will not damage the deck

考题 单选题The usual method of effectively applying foam on a fire is by ().A spraying directly on the base of the fireB flowing the foam down a vertical surfaceC sweeping the fire before you with the foamD spraying directly on the surface of the fire

考题 单选题Laying out a line in successive circles flat on deck with the bitter end in the center is known as().A coilingB fakingC flemishingD lining

考题 单选题A deck fitting,used to secure line or wire rope,consisting of a single body with two protruding horns is called a().A bittB bollardC capstanD cleat

考题 单选题A method used to make an eye in a bight of line where it cannot be spliced is known as().A braidingB plaitingC seizingD serving

考题 多选题Given a pre-generics implementation of a method: What three changes allow the class to be used with generics and avoid an unchecked warning?()ARemove line 14.BReplace line 14 with "int i = iter.next();".CReplace line 13 with "for (int i : intList) {".DReplace line 13 with "for (Iterator iter : intList) {".EReplace the method declaration with "sum(List  intList)".

考题 单选题Right at the top is()It is 300 mm long and 25 mm wide with its upper edgs in line with the uppermost continuous watertight deck.A the deck lineB Plimsoll discC Plimsoll lineD sunmmer load line