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

题目内容 (请给出正确答案)
单选题
The requirements of the ISM Code may be applied to ().
A

only oil tankers

B

only passenger ships

C

only containers

D

all ships


参考答案

参考解析
解析: 暂无解析
更多 “单选题The requirements of the ISM Code may be applied to ().A only oil tankersB only passenger shipsC only containersD all ships” 相关考题
考题 ● During the project, requirements change for a variety of reasons. As needs change and as work proceeds, additional requirements are derived and changes may have to be made to the existing requirements. It is essential to manage these additions and changes efficiently and effectively. To effectively analyze the impact of the changes, it is necessary that the source of each requirement is known and the rationale for any change is documented. The project manager may, however, want to track appropriate measures of requirements volatility to judge whether new or revised (75)are necessary.(75)A. proceedingsB. controlsC. forecasting’sD. prelibations

考题 (c) Explain the term ‘target costing’ and how it may be applied by GWCC. Briefly discuss any potentiallimitations in its application. (8 marks)

考题 (c) Assess how the fundamental ethical principles of IFAC’s Code of Ethics for Professional Accountants shouldbe applied to the provision of a forensic investigation service. (6 marks)

考题 The requirements of the ISM Code may be applied toA.only oil tankersB.only passenger shipsC.only containersD.all kinds of ships

考题 The installation and prevision of fire fighting equipment is mainly subject toA.ISM CodeB.ISPS CodeC.IBC CodeD.FSS Code

考题 The installation and provision of fire fighting equipment is mainly subject to ___.A.ISM codeB.ISPS codeC.IBC codeD.FSS code

考题 During the project, requirements change for a variety of reasons. As needs change and as work proceeds, additional requirements are derived and changes may have to be made to the existing requirements. It is essential to manage these additions and changes efficiently and effectively. To effectively analyze the impact of the changes, it is necessary that the source of each requirement is known and the rationale for any change is documented. The project manager may, however, want to track appropriate measures of requirements volatility to judge whether new or revised(75)are necessary.A.proceedingsB.controlsC.forecasting'sD.prelibations

考题 Accelerated analysis approaches emphasize the construction of( )to more rapidly identify business and user requirements for a new system. As an accelerated analysis technology,( )reads the program code and automatically generates the equivalent system model, and the code can be obtained from ( ). All system analysis approaches require some form of( )which includes those techniques to be used to identify or extract system problems and solution requirements from user community. (请作答此空)is a classical set of techniques used to collect information about system problems, opportunities, solution requirements, and priorities. A. Continuous process improvement B. Joint Requirements planning C. Fact-finding D. Structured engineering

考题 void waitForSignal() {  Object obj = new Object();  synchronized (Thread.currentThread()) {  obj.wait();  obj.notify();  }  }  Which is true?() A、 This code may throw an InterruptedException.B、 This code may throw an IllegalStateException.C、 This code may throw a TimeoutException after ten minutes.D、 This code will not compile unless “obj.wait()” is replaced with “((Thread) obj).wait()”.E、 Reversing the order of obj.wait() and obj.notify() may cause this method to complete normally.F、 A call to notify() or notifyAll() from another thread may cause this method to complete normally.

考题 import java.util.*;  public class NameList {  private List names = new ArrayList();  public synchronized void add(String name) { names.add(name); }  public synchronized void printAll() {  for (int i = 0; i System.out.print(names.get(i) +“ “); }  }  public static void main(String[] args) {  final NameList sl = new NameList();  for(int i=0;i2;i++) {  new Thread() {  public void ruin() {  sl.add(”A”);  sl.add(”B”);  sl.add(”C”);  sl.printAll();  }  }.start();  }  }  }  Which two statements are true if this class is compiled and run?() A、 An exception may be thrown at runtime.B、 The code may run with no output, without exiting.C、The code may rum with output “A B A B C C “, then exit.D、The code may ruin with output “A A A B C A B C C “, then exit.E、 The code may rum with output “A B C A B C A B C “, then exit.F、The code may ruin with output “A B C A A B C A B C “, then exit.

考题 单选题Which of the following is true?()A A company should develop an ISM and implement itB A company implementing an ISM properly may obtain a DOCC Once a company obtains its DOC, each vessel of this company will obtain a SMCD DOC is valid for 60 months unless “major non-conformity” is found

考题 单选题Click the Exhibit button.   What is the result?()A  The code will deadlock.B  The code may run with output "2 0 6 4".C  The code may run with no output.D  The code may run with output "0 6".E  An exception is thrown at runtime.F  The code may run with output "0 2 4 6".

考题 单选题Few people _____ applied for the position meet the requirements of the company.A whomB whoC whatD whose

考题 单选题The ship security officer shall have knowledge and have received training, taking into account the guidance given in Part B of ()A the ISM CodeB the ISPS CodeC the IBC CodeD the IGC Code

考题 单选题In the ISM code, “company” doesnt mean()A the ship ownerB the manager or bareboat chartererC a person assuming the responsibility for ship operationD a business enterprise dealing with freight

考题 多选题Which the two are true about the JSTL core iteration custom tags?()AIt may iterate over arrays, collections, maps and strings.BThe body of the tag may contain EL code, but not scripting code.CWhen looping over collections, a loop status object may be used in the tag body.DIt may iterate over a map, but only the key of the mapping may be used in the tag body.EWhen looping over integers (for example begin1=’1’ end=’10’), a loop status object may not be used in the tag body.

考题 单选题void waitForSignal() {  Object obj = new Object();  synchronized (Thread.currentThread()) {  obj.wait();  obj.notify();  }  }  Which is true?()A  This code may throw an InterruptedException.B  This code may throw an IllegalStateException.C  This code may throw a TimeoutException after ten minutes.D  This code will not compile unless “obj.wait()” is replaced with “((Thread) obj).wait()”.E  Reversing the order of obj.wait() and obj.notify() may cause this method to complete normally.F  A call to notify() or notifyAll() from another thread may cause this method to complete normally.

考题 多选题import java.util.*;  public class NameList {  private List names = new ArrayList();  public synchronized void add(String name) { names.add(name); }  public synchronized void printAll() {  for (int i = 0; i System.out.print(names.get(i) +“ “); }  }  public static void main(String[] args) {  final NameList sl = new NameList();  for(int i=0;iAAn exception may be thrown at runtime.BThe code may run with no output, without exiting.CThe code may rum with output “A B A B C C “, then exit.DThe code may ruin with output “A A A B C A B C C “, then exit.EThe code may rum with output “A B C A B C A B C “, then exit.FThe code may ruin with output “A B C A A B C A B C “, then exit.

考题 单选题A(An)()should be issued for every company complying with the requirement of the ISM Code by the Administration.A ISMB DOCC SMCD PSC

考题 单选题The ISM Code is a part of ()A SOLASB MARPOLC STCWD Ballast Water convention

考题 单选题The ISM code is part of().A SOLASB STCWC MARPOLD High Speed Craft Code

考题 单选题During the project, requirements change for a variety of reasons. As needs change and as work proceeds, additional requirements are derived and changes may have to be made to the existing requirements. It is essential to manage these additions and changes efficiently and effectively. To effectively analyze the impact of the changes, it is necessary that the source of each requirement is known and the rationale for any change is documented. The project manager may, however, want to track appropriate measures of requirements volatility to judge whether new or revised()are necessary.A proceedingsB controlsC forecastingsD Prelibations

考题 单选题class Computation extends Thread {  private int num;  private boolean isComplete;  private int result;  public Computation(int num) { this.num = num; }  public synchronized void run() {  result = num * 2;  isComplete = true;  notify();  }  public synchronized int getResult() {  while (!isComplete) {  try {  wait();  } catch (InterruptedException e) { }  }  return result;  }  public static void main(String[] args) {  Computation[] computations = new Computation [4];  for (int i = 0; i  computations.length; i++) {  computations[i] = new Computation(i);  computations[i] .start();  }  for (Computation c : computations)  System.out.print(c.getResult() +“ “);  }  }  What is the result?()A  The code will deadlock.B  The code may run with no output.C  An exception is thrown at runtime.D  The code may run with output “0 6”.E  The code may run with output “2 0 6 4‟.F  The code may ruin with output “0 2 4 6”.

考题 单选题A safety management system that satisfies the requirements of the ISM Code is a system of prevention designed to prevent pollution and improve safety. The safety management system shall include the following functional requirements, please find out the non applicable function().A A safety and environmental protection policy;B Instructions and procedures to ensure safety operation of ships and protection of the environment in compliance with relevant international and flag state legislationC Provide a guarantee that there will never be another accident or technical defectD Defined levels of authority and lines of communication between and amongst, shore and shipboard personnel

考题 单选题ISM Code.在()通过。A 1993.7.1B 1994.5.24C 1995.7.1D 1996.7.1

考题 单选题The term “the Company” in the ISM Code is defined as ().A the ship ownerB any person who has assumed responsibility for operating the shipC either A or BD neither A nor B

考题 单选题The objectives of the ISM Code are to ensure ().A safety at seaB prevention of human injury or loss of lifeC avoidance of damage to the marine environment and to propertyD all of the above