网友您好, 请在下方输入框内输入要搜索的题目:
题目内容
(请给出正确答案)
单选题
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
参考答案
参考解析
解析:
暂无解析
更多 “单选题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 accuracyB generaate the pressure required for the extraction of the oil mist from theC generate the pressure required for the extraction of the oil mist from the crankcaseD 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;}
考题
以下程序的执行结果为______。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
考题
单选题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 accuracyB
generaate the pressure required for the extraction of the oil mist from theC
generate the pressure required for the extraction of the oil mist from the crankcaseD
supply clean air to the measuring track of the units for more accuracy
考题
单选题Mist detectors used on large low-speed main propulsion diesel engines monitor and check for the presence of ().A
fuel oil vapor at the sludge tank ventB
unburned fuel vapors in the scavenge air receiverC
lube oil vapors in the crank caseD
lube 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 ()A
avoid false alarms as a result of condensing water vaporB
avoid danger of frost under very cold weatherC
reduce the viscosity of the crankcase atmosphere in order to improve the fluidityD
keep 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 ().A
the engine crankcaseB
the engine scavenge boxesC
drain tanksD
fuel tanks
考题
单选题The purpose of an oil mist detector in a main propulsion diesel engine is to warn of ()A
excessive mist density in the crankcasesB
excessively high crankcase vacuumC
excessively high bearing temperatureD
excessive carbon buildup in the lube oil
考题
单选题The most common cause of lowering the crankcase lube oil flash point is ().A
more water contentsB
contamination with fuel oilC
higher temperatureD
sufficient cooling of oil mist
考题
单选题Loss of lubricating oil pressure to the main propulsion diesel engine will actuate a/an ().A
overspeed tripB
audible/visual alarmC
the ships/boats general alarmD
reserve 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.A
detractB
extractC
pump upD
pump 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 ().A
oilB
sea waterC
airD
fresh water
考题
单选题Shaker, circulation and spray are the three general methods used in()A
pre-injection fuel oil treatmentB
lube oil filtrationC
lube oil purificationD
piston cooling
热门标签
最新试卷