单选题In general, the oil mist defectors include a base plate with air blast pumpThe function of air blast pump is to ()crankcase.Asupply clean air to the measuring compartment of the units for more accuracyBgeneraate the pressure required for the extraction of the oil mist from theCgenerate the pressure required for the extraction of the oil mist from the crankcaseDsupply clean air to the measuring track of the units for more accuracy

单选题
In general, the oil mist defectors include a base plate with air blast pumpThe function of air blast pump is to ()crankcase.
A

supply clean air to the measuring compartment of the units for more accuracy

B

generaate the pressure required for the extraction of the oil mist from the

C

generate the pressure required for the extraction of the oil mist from the crankcase

D

supply clean air to the measuring track of the units for more accuracy


参考解析

解析: 暂无解析

相关考题:

有如下程序 include using namespace std; class Base { protected: 有如下程序 #include <iostream> using namespace std; class Base { protected: Base( ){cout<<'A'; } Base(char c) { cout<<c; } }; class Derived: public Base { public: Derived(char c){ cout<<c; } }; int main( ){ Derived d1 ('B'); return 0; } 执行这个程序屏幕上将显示输出A.BB.BAC.ABD.BB

下列程序中划线处正确的语句是()。 include using namespace std;class Base{public:v 下列程序中划线处正确的语句是( )。 # include <iostream> using namespace std; class Base { public: void fun(){cout<<"Base:: fun" <<endl;} }; class Derived:public Base { void fun() { ______ ∥显式调用基类的函数fun() cout<<"DA.fun();B.Base.fun();C.Base::fun();D.Base- >fun();

下面程序的运行结果是 include class base{ protected: int a; public: base( ) {c 下面程序的运行结果是#include<iostream.h>class base{protected:int a;public:base( ) {cout < < "0";}};class base l: virtual base{public:base l ( ) {cout < <"1";}};class base 2: virtual base{public:base2 ( ) {cout < <"2";}};class derived: public base 1, public base2{public:derived( ) {cout < < "3";}};void main( ){derive obj;cout < < endl;}A.0123B.3120C.0312D.3012

有如下程序: include using namespace std; class Base { public: 有如下程序: #include <iostream> using namespace std; class Base { public: Base(int x=0) { cout<<x; } } class Derived: public Base{ public: Derived(int x=0) { cout<<x; } private: Base val; }; int main() { Derived d(1); return 0; }程序的输出结果是A.0B.1C.1D.1

下面程序的输出结果为:Base:: fun,请将程序补充完整。include class Base{public: 【】 下面程序的输出结果为:Base:: fun,请将程序补充完整。include <iostream.h>class Base{public:【 】 fun(){cout<<"Base::fun"<<end1:}class Derived : public Base{public:【 】 fun(){ cout<<"Derived::fun"<<end1; }};int main(){Base a,*pb;Derived b;pb = b;pb->fun();return 0;}

general acid-base catalysis

以下程序的执行结果为______。include using namespace std; class base { public: vir 以下程序的执行结果为______。include<iostream>using namespace std;class base{public:virtual void who(){cout<<"base class"<<endl;}};class derivel:public base{public:void who(){cout<<"d

有如下程序: include using namespace std; class BASE { public 有如下程序: #include<iostream> using namespace std; class BASE { public: ~BASE(){cout<<"BASE";} }; class DERIVED:public BASE { public: ~DERIVED(){cout<<"DERIVED";} }; int main(){DERIVEDx;retum 0;} 执行后的输出结果是A.BASEB.DERIVEDC.BASEDERIVEDD.DERIVEDBASE

有以下程序:include using namespace std; class Base { public: Base() { K=0; } int 有以下程序:include<iostream>using namespace std;class Base{public:Base(){K=0;}int x;};class Derivedl:virtual public Base{public:Derivedl(){x=10;}};class Derived2:virtua1 public Base

有如下程序:include using namespace std;class BASE{public:~BASE(){cout 有如下程序: #include <iostream> using namespace std; class BASE{ public: ~BASE(){cout<<"BASE";} }; class DERIVED:public BASE{ public: ~DERIVED(){cout<<"DERIVED";} }; int main(){DERIVED x;return 0;} 执行后的输出结果是A.BASEB.DERIVEDC.BASEDERIVEDD.DERIVEDBASE

有以下程序include include using namespace std;class base{private:char 有以下程序 #include <iostream> #include <string> using namespace std; class base { private: char baseName[10]; public: base () { strcpy(baseName,"Base"); } virtual char *myName() { return baseName; } char *className() { return baseName; } }; class Derived : public base { private: char derivedName[10]; public: Derived() { strcpy(derivedName,"Derived"); } char *myName() { return derivedName; } char *className() { return derivedName; } }; void showPtr(base p) { cout<<p.myName () <<" "<<p.className (); } int main () { base bb; Derived dd; showPtr(dd); return 0; } 运行后的输出结果为A.Derived BaseB.Base BaseC.Derived DerivedD.Base Derived

下面程序的输出结果是【】。include using namespace std; class base { protected: int 下面程序的输出结果是【 】。include <iostream>using namespace std;class base{protected:int a;public:base(){cout<<"0":}};class basel: virtual public base{public:base1(){ cout<<"1";}};class base2 : virtual public base{public:base2(){cout<<"2";}};class derived : public base1,public base2{public:derived () {cout<<"3"; }}int main (){derived obj;cout<<end1;return 0;}

有如下程序:includeincludeusing namespace std;class BASE{char c;public 有如下程序: #include<iostream>#include<iosream> using namespace std; class BASE{ char c; public; BASE(char n):c(n){} virtual ~ BASE(){cout<<c;} }; class DERIVED; public BASE{ char c; public: DERIVED (char n): BASE (n+1)A.XYB.YXC.XD.Y

有以下程序:include include using namespace std;class base{private: cha 有以下程序: #include <iostream> #include <string> using namespace std; class base { private: char baseName[10]; public: base ( ) { strcpy (baseName, "Base"); } virtual char *myName() {A.DerivedBaseB.BaseBaseC.DerivedDerivedD.BaseDerived

有如下程序:include using namespace std;class Base{private:charc;public:Base(cha 有如下程序:#include <iostream>using namespace std;class Base{private: char c;public: Base(char n) :c(n){} ~Base() { cout<<c; } };class Derived: public Base{private: char c; public: Derived(char n):Base(n+1),c(n) {} ~Derived() { cout<<c; }};int main (){ Derived obj ('x'); return 0;}执行上面的程序净输出A.xyB.yxC.xD.y

有下列程序: include using namespace std; class Base { public: Base(){cout 有下列程序: #include<iosteram.h> using namespace std; class Base { public: Base(){cout<<"BB"; f(); } void f(){cout<<"Bf";} }; class Derived:public Base { public: Derived(){cout<<"DA.BBBfDDB.BBDfDDDfC.DDD.DDBBBf

请在下列程序的横线处填写正确的语句。include using namespace std; class Base{ publ 请在下列程序的横线处填写正确的语句。include<iostream>using namespace std;class Base{public:void fun(){cout<<"Base fun"<<endl;}};class Derivde:public Base{public:void fun(){______∥ 调用基类的函数

______continuously extract the crankcase atmosphere, via a pipe system, and move it past a sensitive and accurate opacity(不透明性) measuring track.A.The oil mist detectorsB.The smoke detectorsC.An oily water monitorD.Oil discharge monitoring and controlling system

单选题Mist detectors used on large low-speed main propulsion diesel engines monitor and check for the presence of ().Afuel oil vapor at the sludge tank ventBunburned fuel vapors in the scavenge air receiverClube oil vapors in the crank caseDlube oil vapors in the engine room

单选题In general, the oil mist detectors include a built-in heating unit and a compact plug for electrical connectionThe function of heating unit is to ()Aavoid false alarms as a result of condensing water vaporBavoid danger of frost under very cold weatherCreduce the viscosity of the crankcase atmosphere in order to improve the fluidityDkeep the temperature of the oil mist detectors in an appropriate range

单选题Oil mist detectors are usually used on board to detect oil mist density within ().Athe engine crankcaseBthe engine scavenge boxesCdrain tanksDfuel tanks

单选题The purpose of an oil mist detector in a main propulsion diesel engine is to warn of ()Aexcessive mist density in the crankcasesBexcessively high crankcase vacuumCexcessively high bearing temperatureDexcessive carbon buildup in the lube oil

单选题The most common cause of lowering the crankcase lube oil flash point is ().Amore water contentsBcontamination with fuel oilChigher temperatureDsufficient cooling of oil mist

单选题Loss of lubricating oil pressure to the main propulsion diesel engine will actuate a/an ().Aoverspeed tripBaudible/visual alarmCthe ships/boats general alarmDreserve oil storage tank

单选题The oil mist detectors continuously() the crankcase atmosphere, via a pipe system, and move it past a sensitive and accurate opacity measuring track.AdetractBextractCpump upDpump down

单选题In a general oil cooler circulated by sea water, the oil is at a higher pressure, the result being that any leak in the cooler will mean a loss of ().AoilBsea waterCairDfresh water

单选题Shaker, circulation and spray are the three general methods used in()Apre-injection fuel oil treatmentBlube oil filtrationClube oil purificationDpiston cooling