单选题Public address system: loudspeakers in the vessel’s cabins, mess rooms, ETC., and on deck via which important information can bebroadcast from a central point, mostly from the navigation bridge defines().APP-systemBPA-systemCAP-systemDAA-system

单选题
Public address system: loudspeakers in the vessel’s cabins, mess rooms, ETC., and on deck via which important information can bebroadcast from a central point, mostly from the navigation bridge defines().
A

PP-system

B

PA-system

C

AP-system

D

AA-system


参考解析

解析: 暂无解析

相关考题:

下列程序的运行结果是【 】。public class Test {public static void main (String args[]) {String s1="hello!";System.out.println (s1.toUpperCase());}}

( 19 )阅读下列代码public class Test2005{public static void main(String args[]){String s= ″ Test ″ ;Switch(s){case ″ Java ″ : System.out.print( ″ Java ″ ) ;break ;case ″ Language ″ : System.out.print( ″ Language ″ ) ;break ;case ″ Test ″ : System.out.print( ″ Test ″ ) ;break ;}}}其运行结果是A ) JavaB ) LanguageC ) TestD )编译出错

下列代码的执行结果是( )。 public class Test{ public static void main String args[]){ String s1=new String("welcome"); String s2=new String("welcome"); System.out.println(s1==s2); System.out.println(s1.equals(s2)); } }A.false,falseB.false,trueC.true,trueD.true,false

public class Something {public static void main(String[] args) {Something s = new Something();System.out.println("s.doSomething() returns " + doSomething());}public String doSomething() {return "Do something ...";}}看上去很完美。

阅读下列代码 public class Test { public static void main(String args[]) { String s = "Test"; switch (s) { case "Java": System.out.print("Java"); break; case "Language": System.out.print("Language"); break; case "Test": System.out.print("Test"); break; } } } 其运行结果是( )。A.JavaB.LanguageC.TestD.编译出错

下列语句输出结果为( )。 public class test { public static void main(StringArgsl[]) { String s1=new String("How"); String s2=new String("How"); System.out.println(!(s1==s2)); } }A.falseB.trueC.1D.0

下列代码段的执行结果是( )。 public class Test { public static void main(String args[ ]) { String s1= new String("hello"); String s2= new String("hello"); System.out.println(s1==s2); System.out.println(s1.equal(s2)); } }A.true falseB.true trueC.false trueD.false false

阅读下列代码 public class Test2005{ public static void main(String args[]){ String s="Test"; switch(s){ case"Java":System.out.print("Java"); break; case"Language":System.out.print("Lan- guage"); break; case"Test":System.out.print("Test"); break; } } } 其运行结果是( )。A.JavaB.LanguageC.TestD.编译时出错

下列代码的执行结果是______。 public class ex55 { public static void main(String args[] ) { String s1=new String("hello"); String s2=new String("hello"); System.out.print (s1==s2); System.out.print (","); System.out.println (s1.equals (s2)); } }A.true, falseB.true, trueC.false, trueD.false, false

下列程序的输出结果是( )。 public class Test { public static void main (String[] args) { String s="hello"; s.replace ('r','m'); System.out.println(s); } }A.helloB.HELLOC.hemmoD.HEMMO

本题读取用户输入的字符流,直到用户输入字符串quit后结束。importjava.io.*;public class javal{public static void main(String[]args){;BufferedReader in;ir=new InputStreamReader(System.in);in=new BufferedReader(ir);System.OUt.println("please input:");while( ){try{String s=in.readLine();System.out.println("echo:"+s);if(S.equals("quit"));)catch(Exception e){}}}}

下列代码的执行结果是( )。 public class Test { public static void main(String args[ ]) { int a =4,b=6,c=8; String s ="abc"; System.out.println(a+b+s+c); System.out.println(); } }A.ababccB.464688C.46abc8D.10abc8

下面程序输出的结果是什么? ( ) public class Quiz2 { public static void main(String args[]) { try {throw new MyException(); }catch(Exception e) { System.out.println("It's caught!"); }finally{ System.out.println("It's finally caught!"); } } } class MyExeeption extends Exception{}A.It's finally caught!B.It's caught!C.It's caught!/It'sfinally caught!D.无输出

设有类定义如下:class InOut{String s= new String("Between");public void amethod(final int iArgs){int iam;class Bicycle{public void sayHello(){//Here}}}public void another(){int iOther;}}以下哪些语句可以安排在//Here处 ?A. System.out.println(s);B.System.out.println(iOther);C. System.out.println(iam);D. System.out.println(iArgs);

How would you pass a red buoy in the maritime buoyage system “A”?______.A.keep the buoy on the vessel’s starboard side when approaching a port and on the vessel’s port side when leavingB.keep the buoy on the vessel’s port side when approaching a port and on the vessel’s starboard side when leavingC.keep the buoy on the vessel’s starboard side when approaching and leavingD.keep the buoy on the vessel’s port side when approaching and leaving

public class Base {  public static final String FOO = “foo”;  public static void main(String[] args) {  Base b = new Base();  Sub s = new Sub();  System.out.print(Base.FOO);  System.out.print(Sub.FOO);  System.out.print(b.FOO);  System.out.print(s.FOO);  System.out.print(((Base)s).FOO);  } }  class Sub extends Base {public static final String FOO=bar;}  What is the result?() A、 foofoofoofoofooB、 foobarfoobarbarC、 foobarfoofoofooD、 foobarfoobarfooE、 barbarbarbarbarF、 foofoofoobarbarG、 foofoofoobarfoo

public class SyncTest{   public static void main(String args) {    final StringBuffer s1= new StringBuffer();    final StringBuffer s2= new StringBuffer();    new Thread () {    public void run() {   synchronized(s1) {   s2.append(“A”);   synchronized(s2) {    s2.append(“B”);    System.out.print(s1);    System.out.print(s2);   }   }    }    }.start();   new Thread() {   public void run() {   synchronized(s2) {  s2.append(“C”);  synchronized(s1) {   s1.append(“D”);  System.out.print(s2);  System.out.print(s1);   }   }    }   }.start();   }   }   Which two statements are true? ()A、 The program prints “ABBCAD”B、 The program prints “CDDACB”C、 The program prints “ADCBADBC”D、 The output is a non-deterministic point because of a possible deadlock condition.E、 The output is dependent on the threading model of the system the program is running on.

public class X {   public static void main (Stringargs) {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s) {   s += “world!”;   }   }   What is the result?() A、The program runs and prints “Hello”B、An error causes compilation to fail.C、The program runs and prints “Hello world!”D、The program runs but aborts with an exception.

单选题A note of protest is a declaration made by the Master of a vessel before a notary public.Its purpose is to().AProtest acts of violence or misconduct by the vessel's crewBState that damage to cargo or vessel was caused by improper loading or pilferage by others rather than ship's personnelCState that the damage to ship,cargo or both was due to the perils of the seaDState that the perishable cargo was damaged because of negligence by port authorities or other officials

单选题When the author uses the automobile industry as an example, she argues that ______.AJapan’s auto industry is exceeding America’s auto industryBthe public schooling has stagnated because of competitionCthe current American education system is better than the Japanese oneDcompetition must be introduced into the public education system

单选题According to the “Vessel Bridge-to-Bridge Radiotelephone Act”,your radiotelephone log must contain().Aa record of all routine callsBa record of your transmissions onlyCthe home address of the vessel's Master or ownerDa summary of all distress calls and messages

单选题You are the Exchange administrator of the Xxx Corporation’s Exchange 2010 organization.You are  concerned about the total size of items that are stored in a public folder namedExpenseReport.Click the Exhibit (s) button to view the public folder configuration. Which of the following techniques should you use to determine the size of items and the attachments in the public folder?()A Run the following script: Get-PublicFolderItemStatistics -Identity "/ExpenseReport/2009"B Click on the Statistics tab in the properties of the public folder with the Public Folder Management ConsoleC Use the MSExchangeIS Public object in System MonitorD Use the MSExchangeIS object in System Monitor

单选题How would you pass a red buoy in the maritime buoyage system“A” ().Akeep the buoy on the vessel's starboard side when approaching a port and on the vessel's port side when leavingBkeep the buoy on the vessel's port side when approaching a port and on the vessel's starboard side when leavingCkeep the buoy on the vessel's starboard side when approaching and leavingDkeep the buoy on the vessel's port side when approaching and leaving

单选题public class X {   public static void main (String[]args)   {   string s = new string (“Hello”);   modify(s);   System.out.printIn(s);   }   public static void modify (String s)  {   s += “world!”;      }   }      What is the result?()A The program runs and prints “Hello”B An error causes compilation to fail.C The program runs and prints “Hello world!”D The program runs but aborts with an exception.

单选题public class Base {  public static final String FOO = “foo”;  public static void main(String[] args) {  Base b = new Base();  Sub s = new Sub();  System.out.print(Base.FOO);  System.out.print(Sub.FOO);  System.out.print(b.FOO);  System.out.print(s.FOO);  System.out.print(((Base)s).FOO);  } }  class Sub extends Base {public static final String FOO=bar;}  What is the result?()A foofoofoofoofooB foobarfoobarbarC foobarfoofoofooD foobarfoobarfooE barbarbarbarbarF foofoofoobarbarG foofoofoobarfoo

单选题A towing vessel’s fire detection system may be certified to comply with the Coast Guard’s towing vessel fire protection regulations by().Aa Coast Guard inspectorBa registered professional engineerCthe owner or Master of the vesselDa licensed electrician

多选题public class SyncTest{   public static void main(String args) {    final StringBuffer s1= new StringBuffer();    final StringBuffer s2= new StringBuffer();    new Thread () {    public void run() {   synchronized(s1) {   s2.append(“A”);   synchronized(s2) {    s2.append(“B”);    System.out.print(s1);    System.out.print(s2);   }   }    }    }.start();   new Thread() {   public void run() {   synchronized(s2) {  s2.append(“C”);  synchronized(s1) {   s1.append(“D”);  System.out.print(s2);  System.out.print(s1);   }   }    }   }.start();   }   }   Which two statements are true? ()AThe program prints “ABBCAD”BThe program prints “CDDACB”CThe program prints “ADCBADBC”DThe output is a non-deterministic point because of a possible deadlock condition.EThe output is dependent on the threading model of the system the program is running on.