Point out which one of the following items is not in the charge of Chief Officer in repairing operation. ______.
A.hull cleaning
B.derusting and painting
C.the maintenance of boiler
D.docking and undocking
第1题:
编译和执行以下代码,输出结果是( )。 int i=1; switch (i) { case 0: System.out.print("zero,"); break; case 1: System.out.print("one,"); case 2: System.out.print("two,"); default: System.out.println("default"); }
A.one,
B.one,two,
C.one,two,default
D.default
第2题:
In some countries, _____ is called "equality" does not really mean equal rights for all people.
(A) which (C) that
(B) what (D) one
选B
这句话貌似定语从句。而实际上,前面的部分就是状语,后半句与countries没有修饰关系(因为1.后半句缺主语,但空格的位置用countries不能替换,否则语义不对。2.后半句不缺宾语。)所以后半句的()is called equality作主语.是主语从句。
在选项中,只有what引导主语从句。
意思:在一些国家里,所谓平等,并不意味着所有公民的平等权利
第3题:
第4题:
下面程序的输出结果是( )。 Public class Sun { public static void main(String args[ ]) { int i = 9; switch (i) { default: System.out.println("default"); case 0: System.out.println("zero"); break; case 1: System.out.println("one"); case 2: System.out.println("two"); } } }
A.default
B.defauolt, zero
C.error default clause not defined
D.no output displayed
第5题:
The authority to grant an alternate procedure for oil transfer operations rests with the ______.
A.nearest Coast Guard office
B.Officer-in-Charge,Marine Inspection
C.Area Commander
D.Captain of the Port
第6题:
执行下列Java语句:int x = 1; switch (x+1 ) { case 1: System.out.print("One" ); case 2: System.out.print("Two" ); case 3: System.out.print("Three" ); default: System.out.print("Error" ); } 显示器上将显示()。
A.One
B.Two
C.TwoThree
D.TwoThreeError