One of the factors limiting the amount of toad which can be put on a modem marine diesel engine is the_______.A.governor sensitivityB.exhaust temperatureC.fuel injection pressureD.speed of the cam shaft

题目

One of the factors limiting the amount of toad which can be put on a modem marine diesel engine is the_______.

A.governor sensitivity

B.exhaust temperature

C.fuel injection pressure

D.speed of the cam shaft


相似考题
更多“One of the factors limiting the amount of toad which can be put on a modem marine diesel e ”相关问题
  • 第1题:

    As this product is now ()great demand and the supply is rather (), we would recommend you to accept this offer as soon as possible.

    A、in⋯limited

    B、in⋯limiting

    C、of⋯limited

    D、at⋯limiting


    参考答案:A

  • 第2题:

    有下列程序:includeUsing namespace std;Class Amount{ int amount;public; Amount(i

    有下列程序: #include<iostream> Using namespace std; Class Amount{ int amount; public; Amount(int n=O):amount(n){} Int getAmount()const{return amount;} Amount &operator+=(AmountA) {

    A.*this

    B.this

    C.&amount

    D.amount


    正确答案:D
    解析: 此题考查的是“+”运算符重载和this指针。语句amount+=a.amount;实现3和7的求和,得到amount=10,要使程序的输出结果为10,需要把amount的值作为函数的返回值,所以横线处应填入amot。

  • 第3题:

    7、BookStore数据库中有销售明细表OrderDetail(OrderCode, BookCode, Amount) 查询销售总量前20%的图书,并按总销量降序排列。SQL语句: SELECT TOP 20 PERCENT Bookcode As 书号, SUM(Amount)As总销量 ROM OrderDetail GROUP BY Bookcode ORDER BY ________

    A.Amount DESC

    B.SUM(Amount) DESC

    C.COUNT(Amount) DESC

    D.ADD(Amount) DESC


    SUM(Amount) DESC

  • 第4题:

    In some countries, _____ is called "equality" does not really mean equal rights for all people.

    (A) which (C) that

    (B) what (D) one

     

     


    选B


    这句话貌似定语从句。而实际上,前面的部分就是状语,后半句与countries没有修饰关系(因为1.后半句缺主语,但空格的位置用countries不能替换,否则语义不对。2.后半句不缺宾语。)所以后半句的()is called equality作主语.是主语从句。
    在选项中,只有what引导主语从句。
    意思:在一些国家里,所谓平等,并不意味着所有公民的平等权利

  • 第5题:

    It's said that he's looking for a new job, one_________ he can get more free time.

    A.when
    B.where
    C.that
    D.which

    答案:B
    解析:
    考查定语从句。one是a newjob的同位语,同时one是先行词,后面是个定语从句,由于定语从句he can get more free time不缺少任何成分,说明空格处在从句中作状语,需要用where引导,意为“从新工作中获得更多的自由时间”。如果选which的话,应该是one(a job)from which he can get more free time,故选B。

  • 第6题:

    BookStore数据库中有销售明细表OrderDetail(OrderCode, BookCode, Amount) 查询销售总量前20%的图书,并按总销量降序排列。SQL语句: SELECT TOP 20 PERCENT Bookcode As 书号, SUM(Amount)As总销量 ROM OrderDetail GROUP BY Bookcode ORDER BY ________

    A.Amount DESC

    B.SUM(Amount) DESC

    C.COUNT(Amount) DESC

    D.ADD(Amount) DESC


    INSERT INTO OrderDetail(OrderCode, Amount, BookCode) VALUES('08110801',3, '0701');INSERT INTO OrderDetail(OrderCode, BookCode, Amount) VALUES('08110801', '0701', 3);INSERT INTO OrderDetail VALUES('08110801', '0701', 3)