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

题目内容 (请给出正确答案)

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


参考答案

更多 “ 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 ” 相关考题
考题 如果发现有人休克,保安应怎么处置?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.testify B.charge C.accuse D.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().A anyone involved in the casualtyB any governmental official authorized to investigate the casualtyC the local Captain of the PortD All of the above

考题 单选题Which should NOT be a treatment for a person who has received a head injury and is groggy or unconscious?()A Give a stimulantB Elevate his headC Stop severe bleedingD Treat 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 ().A the manager of the shipping companyB the master of the shipC the designated person on board shipD the designated person ashore

考题 单选题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

考题 单选题Prior to getting underway,the Master or person in charge of a vessel must().A conduct a fire drillB conduct a boat drillC log the fore and aft draft marksD test the emergency generator

考题 单选题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

考题 单选题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 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

考题 单选题To whom should the master render the Maritime Declaration of Health when the ship arrives at a port outside the territory?().A Health doctorB Health officerC Health surgeonD Health person

考题 单选题CASE OF DEATH OR SERIOUS INJURY TO A PERSON IN AN ACCIDENT OR SHIPPING DISASTER is().A SalvageB Operations of the salvageC CasualtyD Injury

考题 单选题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