更多“英译中:Less-than Truck Load”相关问题
  • 第1题:

    使用VC6打开考生文件夹下的工程test17_1,此工程包含一个源程序文件test17_1.唧,但该程序运行有问题,请改正程序中的错误,使程序的输出结果如下:

    Vehicle message

    Car message

    Vehicle message

    源程序文件test17_1.cpp 清单如下:

    include <iostream.h>

    class vehicle

    {

    int wheels;

    float weight;

    public:

    /***************** found *****************/

    void message(void){ cout<<"Vehicle message\n";}

    };

    class car:public vehicle

    {

    int passenger_load;

    public:

    /***************** found *****************/

    void message (void){cout>>"Car message\n";}

    };

    class truck:public vehicle

    {

    int passenger_load;

    float payload;

    public:

    int passengers(void){return passenger_load;}

    };

    void main()

    {

    vehicle * unicycle;

    unicycle=new vehicle;

    /***************** found *****************/

    unicycle.message()

    delete unicycle;

    unicycle=new car;

    unicycle->message();

    delete unicycle;

    unicycle=new truck;

    unicycle->message();

    delete unicycle;

    }


    正确答案:(1)错误:void message(void){cout"Vehicle message\n";} 正确:virtual void message(void){cout"Vehicle message\n";} (2)错误:void message(void){cout>>"Carmessage\n”;} 正确:void message(void){eout"Carmessage\n";} (3)错误:unicycle.message(); 正确:unicycle->message();
    (1)错误:void message(void){cout"Vehicle message\n";} 正确:virtual void message(void){cout"Vehicle message\n";} (2)错误:void message(void){cout>>"Carmessage\n”;} 正确:void message(void){eout"Carmessage\n";} (3)错误:unicycle.message(); 正确:unicycle->message(); 解析:(1)主要考查考生对于虚函数使用规则的掌握,要实现对函数message的动态联编应该使用虚函数,否则产生的是静态联编,调用的函数输出结果就与要求不符;
    (2)主要考查考生对于流输出操作的掌握,该处错误的使用了流输入操作;
    (3)主要考查考生是否能分清对象和对象指针,对象指针使用“->”调用成员函数,而对象使用“.”调用成员函数。

  • 第2题:

    材料:

    An aircraft lift on board RFA Argus was loaded beyond its safe working load of 18.4 tonnes.There were no injuries to any personnel,or material damage to the ship or its equipment.

    During a planned stay in port,500 compressed CO2 cylinders were required to be landed.These were normally stowed on a lower deck and needed to be transferred to the weather deck before being taken ashore.Before the vessel&39;s arrival in port,the planned operation was discussed between various officers and senior ratings,one of whom was to supervise final discharge of the cylinders from the ship.

    Once in port,a senior rating gave instructions to three juniors to transfer a number of cylinders to the weather deck.He then left them alone to load the cylinders onto the platform. of an aircraft lift.The cylinders weighed 19.95 tonnes,which was greater than they had been instructed to load.In addition to this excess weight they added a fork lift truck weighing 5.5 tonnes.The lift was then raised.

    When it reached the weather deck,the lift was unable to stow at the correct level.When investigated it was discovered that the load of both CO2 bottles and the fork lift truck was greater than its safe working load(SWL)and this had prevented the locking cleats at the flight deck(weather deck)engaging.

    问题:

    The lift was taken out of service for testing and inspection. The safe working load of the aircraft lift is ________ tonnes.

    A.18.4

    B.19.95

    C.5.5

    D.500

    The aircraft lift was overloaded by a weight which is ________ more than its SWLA.1.55

    B.3.95

    C.5.5

    D.7.05

    It is implied in the passage that ________.A.the lift should be raised slowly to avoid the accident

    B.the aircraft lift on board RFA Argus should be driven by super power

    C.the senior rating should give instructions in more detail to the three juniors to transfer a number of cylinders to the weather deck

    D.if the unloading operation was supervised by an officer who has sufficient experience of the loads,lifting equipment and the overall operation,the accident would had been avoided

    It was the ________ that had prevented the locking cleats at the flight deck(weather deck)engaging.A.fork lift

    B.CO2 bottles

    C.overloaded weight

    D.the three juniors

    请帮忙给出每个问题的正确答案和分析,谢谢!


    问题 1 答案解析:A


    问题 2 答案解析:D


    问题 3 答案解析:D


    问题 4 答案解析:C

  • 第3题:

    英译中:Less than container load(LCL)


    正确答案: 拼箱货

  • 第4题:

    英译中:Full container load(FCL)


    正确答案: 整箱

  • 第5题:

    英译中:Less than truck load


    正确答案: 零担运输

  • 第6题:

    Freight forwarders purchase long distance service from()carriers.

    • A、water
    • B、rail
    • C、air
    • D、truck

    正确答案:A,B,C,D

  • 第7题:

    名词解释题
    英译中:Less than truck load

    正确答案: 零担运输
    解析: 暂无解析

  • 第8题:

    名词解释题
    英译中:Less than container load(LCL)

    正确答案: 拼箱货
    解析: 暂无解析

  • 第9题:

    名词解释题
    英译中:Full container load(FCL)

    正确答案: 整箱
    解析: 暂无解析

  • 第10题:

    名词解释题
    英译中:Less-than truck load(LTL)

    正确答案: 零担运输
    解析: 暂无解析

  • 第11题:

    单选题
    Which is the winter load waterline on the load waterline mark?().
    A

    The line over the summer load waterline

    B

    The line above the tropical load waterline

    C

    The line below the tropical load waterline

    D

    The line between the summer and the winter north Atlantic load waterline


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

  • 第12题:

    单选题
    What does MBDD mean on the load waterline mark?().
    A

    Timber tropical load waterline

    B

    Timber summer load waterline

    C

    Timber winter load waterline

    D

    Timber winter north Atlantic load waterline


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

  • 第13题:

    Whichelement,definedasachildofaelementinthewebapplicationdeploymentdescriptor,guaranteesaservletwillbeinitializedatthetimetheapplicationisdeployed?()

    A.<load-on-startup/>

    B.<load-on-startup>1</load-on-startup>

    C.<load-on-startup>-1</load-on-startup>

    D.<load-on-startup>true</load-on-startup>


    参考答案:B

  • 第14题:

    He pulled out to overtake a truck.

    A:skip
    B:pass
    C:reach
    D:lead

    答案:B
    解析:
    本句意思:他驶出车流以超过一辆卡车。overtake意思是“超过,赶上”,与pass(超过)意思相近。skip跳,跳过;reach到达;lead领导,导致。

  • 第15题:

    Forklift truck is very convenient equipment for().

    • A、loadinggoods
    • B、unloadinggoods
    • C、transportationbrokers
    • D、insurancebrokers

    正确答案:A,B

  • 第16题:

    英译中:Less-than truck load(LTL)


    正确答案: 零担运输

  • 第17题:

    英译中:Folk lift truck


    正确答案: 叉车

  • 第18题:

    Which element, defined as a child of a  element in the web application deployment descriptor, guarantees a servlet will be initialized at the time the application is deployed?() 

    • A、 <load-on-startup/> 
    • B、 <load-on-startup>1</load-on-startup> 
    • C、 <load-on-startup>-1</load-on-startup> 
    • D、 <load-on-startup>true</load-on-startup>

    正确答案:B

  • 第19题:

    单选题
    Which element, defined as a child of a  element in the web application deployment descriptor, guarantees a servlet will be initialized at the time the application is deployed?()
    A

     <load-on-startup/> 

    B

     <load-on-startup>1</load-on-startup> 

    C

     <load-on-startup>-1</load-on-startup> 

    D

     <load-on-startup>true</load-on-startup>


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

  • 第20题:

    单选题
    The less the surface of the ground yields to the weight of a fully-loaded truck ______ to the truck.
    A

    the greater stress is

    B

    greater is the stress

    C

    the stress is greater

    D

    the greater the stress


    正确答案: A
    解析:
    句意:地表和载满货物的卡车的接触面越小,卡车的压力就越大。“the+比较级,the+比较级”表示“越…就越…”。

  • 第21题:

    名词解释题
    英译中:Less-than Truck Load

    正确答案: 零担运输
    解析: 暂无解析

  • 第22题:

    名词解释题
    英译中:Folk lift truck

    正确答案: 叉车
    解析: 暂无解析

  • 第23题:

    问答题
    A truck driver wants to load as many identical cylindrical canisters of olive oil as can fit into the 3-meter×4-meter×9-meter storage space of his truck. How many canisters can he load into the truck?  (1) Each canister has a volume of 62,500π cubic centimeters.  (2) The height of each canister is four times the radius.

    正确答案: C
    解析:
    两个条件单独使用,均无法计算出答案,将两个条件综合可计算出答案,故本题选C项。