In the case of an injury causing a person to be incapacitated,the Master or person in charge of a mobile offshore drilling unit must submit a report to the ______.A.nearest Marine Safety or Marine Inspection OfficeB.nearest hospitalC.Department of EnergyD.American Bureau of Shipping

In the case of an injury causing a person to be incapacitated,the Master or person in charge of a mobile offshore drilling unit must submit a report to the ______.

A.nearest Marine Safety or Marine Inspection Office

B.nearest hospital

C.Department of Energy

D.American Bureau of Shipping


相关考题:

如果发现有人休克,保安应怎么处置?A.How does a security deal with the person if he finds he lost his consciousness?B.What does a security hold a person if he finds he lost his consciousness?C.How does a security handle the person if he finds he is injured?D.What will a security deal with the person if he finds a man involved in a case?

使用VC6打开考生文件夹下的工程test4_3。此工程包含一个源程序文件test4_3.cpp,其对一个学校的教师和考生情况进行了描述。由于教师和考生之间有相同的信息,如姓名、年龄等,所以可抽象出一个基类person,考生类student和教师类teacher作为person类的派生类。请按要求完成下列操作,将程序中的类定义补充完整。(1)定义基类person的私有数据成员name和age,分别用于表示姓名和年龄,name为字符指针,age为血型的数据。请在注释“//**1**”之后添加适当的语句。(2)完成基类person的重载构造函数person(char *mint a)的定义,把数据成员name,age分别初始化为参数n,a的值,请在注释“//**2**”之后添加适当的语句。(3)根据主函数main中对s1的声明,定义派生类student的构造函数。在注释“//**3**”之后添加适当的语句。(4)完成派生类teacher成员函数void setinf(ehar *n,int a,char *d,char *1)的定义,其功能为记录教师的姓名、年龄、院,系与职称信息。请在注释“//**4**”之后添加适当的语句。输出结果如下:刘雷(45)destructor蒋军(23)destructor注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。源程序文件test4_3.cpp清单如下:include<iostream.h>class person{//**1**public:person(){}person(char *n,int a){//**2**}void setname(char *n){name=n;)void setage(int a){age=a;}~person(){cout<<name<<"("<<age<<")destructor"<<endl;)};class student:public person{char *department;int code;public://**3**{department=d;code=c;}};class teacher:public person{char *department;char *level;public:teacher(){}void setinf(char *n,int a,char *d,char *1){//**4**department=d;level=1;}};void main(){student s1("蒋军",23,"计算机学院",2);teacher t1;t1.setinf("刘雷",45,"计算机学院","教授");}

有以下程序:includeincludeusingnameSpacestd;classperson{ intage; Char*nam 有以下程序:include <iostream>include <string>using nameSpace std;class person{int age;Char * name;public:person ( int i, Char * str ){int j;j = strlen( str ) + 1;name = new char[ j ];strcpy( name, str );age = i;}~person(){delete name;cout<<"D";}void display(){cout<<name<<":"<<age;}};int main(){person demo( 30,"Smith" );demo.display();return 0;}则该程序的输出结果为:【 】。

使用VC6打开考生文件夹下的工程test28_3。此工程包含一个test28_3.cpp,其中定义了类Person,但该类的定义并不完整。请按要求完成下列操作,将程序补充完整。(1)定义类Person的私有数据成员forename、surname 和 money,forename 和 surname都是char型的指针数据,money是double型的数据。请在注释“//**1**”之后添加适当的语句。(2)完成类Person的带三个参数的构造函数Person(char *f, char *s,double m),分别为forename和surname申请新的空间来存储参数f和s指针指向的内容,注意空间的大小,最后把参数m的值赋给money,请在注释“//**2**”之后添加适当的语句。(3)完成类Person的析构函数的定义,把forename和surname指向的空间释放,请在注释“//**3**”之后添加适当的语句。(4)完成类Person的成员函数display的定义,使其以格式“forname surname has money”的形式输出内容,请在注释“//**4*。”之后添加适当的语句。注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。输出结果如下:Richard Berk has 1000.56源程序文件test28_3.cpp清单如下:include <iostream.h>include <string.h>class Person{private://** 1 **double money;public:Person(char *f, char *s, double m);~Person();void display();};Person::Person(char *f, char *s, double m){//** 2 **strcpy(forename, f);surname = new char[strlen(s)+1];strcpy(surname, s);money=m;}Person: :-Person (){//** 3 **}void Person:: display ( ){//** 4 **}void main ( ){Person p("Richard", "Berk", 1000.56);p.display ( );}

下列程序运行后的输出结果是( )。#include#includeusing namespace std;class Person{public:Person(string n):name(n) { coutprivate:int year,month,day;};class Student:public Person{public:Student(string n,int y,int m,int d,char c):birthday(y,m,d),sex(c),Person(n) { coutA. SB.PSC.DPSD.PDS

有以下程序: #include 〈iostream〉 #include 〈string〉 using namespace std; class visited { private: int number; char *name; public: static int glob; void set mes(char *a); }; void visited::set mes(char *a) { name=new char[strlen(A) +1]; strcpy(name,A) ; number=++glob; } int visited::glob-O; int main() { visited person[10]; int i; char str[8]; for(i=0;i5;i++) { cinstr; person[i] .set mes(str); } coutA.5B.4C.3D.2

●以下的SQL 99语句,Student与Person之间的关系是 (62) 。CREATE TYPE Person(name char(20),address varchar(50));CREATE TYPE Student(under Person(degree char(20)department char(20));(62)A.类型继承B.类型引用C.表继承D.无任何关系

某C语言结构体的定义如下。 struct date { int year, month, day; }; struct worklist { char name[20]; char sex; struct date birthday; }person; 若对变量person的出生年份进行赋值,正确的赋值语句是(33)。A.year=1976B.birthday. year=1976C.person. year=1976D.person. birthday. year=1976

The radiotelephone required by the Vessel Bridge-to-Bridge Radiotelephone Act is for the exclusive use of ______.A.the Master or person in charge of the vesselB.a person designated by the MasterC.a person on board to pilot the vesselD.All of the above

In any major injury to a person,first aid includes the treatment for the injury and ______.A.application of CPRB.removal of any foreign objectsC. administration of oxygenD.for traumatic shock

A person being treated for shock should be wrapped in warm coverings to ______.A.increase body heatB.preserve body heatC.avoid self-inflicted wounds caused by spastic movementD.protect the person from injury during transportation

CASE OF DEATH OR SERIOUS INJURY TO A PERSON IN AN ACCIDENT OR SHIPPING DISASTER is ______.A.SalvageB.Operations of the salvageC.CasualtyD.Injury

Functions aboard a tanker or tank barge such as connecting,disconnecting,and topping off must be supervised by ______.A.any certificated tankermanB.the Master of the vesselC.the officer of the watchD.the person designated as person in charge

Please give particulars of every case of {illness or death} occurring on board,the Health officer said to the master.A.Symptoms or CaseB.disease or accidentC.sickness or mortalityD.Health or person

In the case of a casualty involving a vessel,the Master,owner,agent or person in charge shall make the records required by regulation available upon request to ______.A.anyone involved in the casualtyB.any governmental official authorized to investigate the casualtyC.the local Captain of the PortD.All of the above

He is the only person who can( )in this case,because the other witnesses were killed mysteriously.A.testifyB.chargeC.accuseD.rectify

单选题In the case of a casualty involving a vessel,the Master,owner,agent or person in charge shall make the records required by regulation available upon request to().Aanyone involved in the casualtyBany governmental official authorized to investigate the casualtyCthe local Captain of the PortDAll of the above

单选题Which should NOT be a treatment for a person who has received a head injury and is groggy or unconscious?()AGive a stimulantBElevate his headCStop severe bleedingDTreat for shock

单选题The“person in the phrase ”to designate a person or persons ashore having direct access to the highest level of management” refers to ().Athe manager of the shipping companyBthe master of the shipCthe designated person on board shipDthe designated person ashore

单选题Functions aboard a tanker or tank barge such as connecting,disconnecting,and topping off must be supervised by().Aany certificated tankermanBthe Master of the vesselCthe officer of the watchDthe person designated as person in charge

单选题Prior to getting underway,the Master or person in charge of a vessel must().Aconduct a fire drillBconduct a boat drillClog the fore and aft draft marksDtest the emergency generator

单选题A person being treated for shock should be wrapped in warm coverings to().Aincrease body heatBpreserve body heatCavoid self-inflicted wounds caused by spastic movementDprotect the person from injury during transportation

单选题The radiotelephone required by the Vessel Bridge-to-Bridge Radiotelephone Act is for the exclusive use of ().Athe Master or person in charge of the vesselBa person designated by the MasterCa person on board to pilot the vesselDAll of the above

单选题In the case of an injury causing a person to be incapacitated,the Master or person in charge of a mobile offshore drilling unit must submit a report to the().Anearest Marine Safety or Marine Inspection OfficeBnearest hospitalCDepartment of EnergyDAmerican Bureau of Shipping

单选题To whom should the master render the Maritime Declaration of Health when the ship arrives at a port outside the territory?().AHealth doctorBHealth officerCHealth surgeonDHealth person

单选题CASE OF DEATH OR SERIOUS INJURY TO A PERSON IN AN ACCIDENT OR SHIPPING DISASTER is().ASalvageBOperations of the salvageCCasualtyDInjury

单选题In any major injury to a person,first aid includes the treatment for the injury and().Aapplication of CPRBremoval of any foreign objectsCadministration of oxygenDfor traumatic shock