niusouti.com

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

题目

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


相似考题

3.使用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 ( );}

4.使用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,"计算机学院","教授");}

更多“In the case of an injury causing a person to be incapacitated,the Master or person in char ”相关问题
  • 第1题:

    下列程序运行后的输出结果是( )。#include#includeusing namespace std;class Person{public:Person(string n):name(n) { cout<<'P'; }private:string name;};class Date{public:Date(int y=2012,int m=12,int d=21):year(y),month(m),day(d) { cout<<'D'; }

    private: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) { cout<<'S'; }private:Date birthday;char sex;};int main(){Student stu1("Zhang",1990,10,1,'F');return 0}

    A. S

    B.PS

    C.DPS

    D.PDS


    参考答案:D

  • 第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.无任何关系


    正确答案:A

  • 第3题:

    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 vessel

    B.a person designated by the Master

    C.a person on board to pilot the vessel

    D.All of the above


    正确答案:D

  • 第4题:

    A person being treated for shock should be wrapped in warm coverings to ______.

    A.increase body heat

    B.preserve body heat

    C.avoid self-inflicted wounds caused by spastic movement

    D.protect the person from injury during transportation


    正确答案:B

  • 第5题:

    Functions aboard a tanker or tank barge such as connecting,disconnecting,and topping off must be supervised by ______.

    A.any certificated tankerman

    B.the Master of the vessel

    C.the officer of the watch

    D.the person designated as person in charge


    正确答案:D

  • 第6题:

    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 casualty

    B.any governmental official authorized to investigate the casualty

    C.the local Captain of the Port

    D.All of the above


    正确答案:B

  • 第7题:

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

    B

    any governmental official authorized to investigate the casualty

    C

    the local Captain of the Port

    D

    All of the above


    正确答案: B
    解析: 暂无解析

  • 第8题:

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

    B

    the master of the ship

    C

    the designated person on board ship

    D

    the designated person ashore


    正确答案: D
    解析: 暂无解析

  • 第9题:

    单选题
    Prior to getting underway,the Master or person in charge of a vessel must().
    A

    conduct a fire drill

    B

    conduct a boat drill

    C

    log the fore and aft draft marks

    D

    test the emergency generator


    正确答案: D
    解析: 暂无解析

  • 第10题:

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

    B

    a person designated by the Master

    C

    a person on board to pilot the vessel

    D

    All of the above


    正确答案: A
    解析: 暂无解析

  • 第11题:

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

    Health doctor

    B

    Health officer

    C

    Health surgeon

    D

    Health person


    正确答案: D
    解析: 暂无解析

  • 第12题:

    单选题
    In any major injury to a person,first aid includes the treatment for the injury and().
    A

    application of CPR

    B

    removal of any foreign objects

    C

    administration of oxygen

    D

    for traumatic shock


    正确答案: A
    解析: 暂无解析

  • 第13题:

    有以下程序: #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;i<5;i++) { cin>>str; person[i] .set mes(str); } cout<

    A.5

    B.4

    C.3

    D.2


    正确答案:A
    解析:本题考核静态数据成员的应用。分析程序:①类visited中,定义了两个私有成员:整型变量number和指针变量name。两个公有成员:静态数据变量glob和函数setmes()。②在函数setmes中,把传入的字符串保存在类的私有成员name中,并把静态数据成员glob自加,同时赋值给私有成员number。通过以上分析可知,函数setmes()用来记录输入的名字(即来访者的姓名),静态数据变量glob用来记录有多少来访者。在主函数中,输入5个字符串(即5个来访者的姓名)后,用来记录来访者数目的静态数据成员glob的值变成5。所以程序最后的输出结果是5。

  • 第14题:

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

    A.year=1976

    B.birthday. year=1976

    C.person. year=1976

    D.person. birthday. year=1976


    正确答案:D
    解析:本试题考查嵌套定义的结构体成员的引用。首先,直接使用结构体成员而无所属关系是一种典型错误,系统将认为它是普通变量而非结构体成员。其次,不论结构体嵌套的层次多少,只能从最外层开始,逐层用“.”运算符展开,注意展开时必须使用变量名而不是结构体名。事实证明,只有这种展开方式才能清楚地说明成员的所属关系。对于试题,若对变量person的出生年份进行赋值,正确的赋值语句是选项D的“person-birthday.year=1976”。

  • 第15题:

    In any major injury to a person,first aid includes the treatment for the injury and ______.

    A.application of CPR

    B.removal of any foreign objects

    C. administration of oxygen

    D.for traumatic shock


    正确答案:D

  • 第16题:

    CASE OF DEATH OR SERIOUS INJURY TO A PERSON IN AN ACCIDENT OR SHIPPING DISASTER is ______.

    A.Salvage

    B.Operations of the salvage

    C.Casualty

    D.Injury


    正确答案:C

  • 第17题:

    Please give particulars of every case of {illness or death} occurring on board,the Health officer said to the master.

    A.Symptoms or Case

    B.disease or accident

    C.sickness or mortality

    D.Health or person


    正确答案:C

  • 第18题:

    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

    答案:A
    解析:
    句意:他是这个案子中唯一可以作证的人,因为其他的目击证人都被神秘杀害了。testify意为“作证,证明”,符合题意。B.charge指“指控”,C.accuse意为“控告,指探”。D.rectify意为“纠正,改正”。

  • 第19题:

    单选题
    Which should NOT be a treatment for a person who has received a head injury and is groggy or unconscious?()
    A

    Give a stimulant

    B

    Elevate his head

    C

    Stop severe bleeding

    D

    Treat for shock


    正确答案: A
    解析: 暂无解析

  • 第20题:

    单选题
    Functions aboard a tanker or tank barge such as connecting,disconnecting,and topping off must be supervised by().
    A

    any certificated tankerman

    B

    the Master of the vessel

    C

    the officer of the watch

    D

    the person designated as person in charge


    正确答案: C
    解析: 暂无解析

  • 第21题:

    单选题
    A person being treated for shock should be wrapped in warm coverings to().
    A

    increase body heat

    B

    preserve body heat

    C

    avoid self-inflicted wounds caused by spastic movement

    D

    protect the person from injury during transportation


    正确答案: C
    解析: 暂无解析

  • 第22题:

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


    正确答案: C
    解析: 暂无解析

  • 第23题:

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

    Salvage

    B

    Operations of the salvage

    C

    Casualty

    D

    Injury


    正确答案: B
    解析: 暂无解析