更多“The manager has to be () because he could not keep his promise. ”相关问题
  • 第1题:

    Whichfouraretrue?()

    A.Has-arelationshipsshouldneverbeencapsulated.

    B.Has-arelationshipsshouldbeimplementedusinginheritance.

    C.Has-arelationshipscanbeimplementedusinginstancevariables.

    D.Is-arelationshipscanbeimplementedusingtheextendskeyword.

    E.Is-arelationshipscanbeimplementedusingtheimplementskeyword.

    F.Anarrayoracollectioncanbeusedtoimplementaone-to-manyhas-arelationship.

    G.TherelationshipbetweenMovieandActressisanexampleofanis-arelationship.


    参考答案:C, D, E, F

  • 第2题:

    The working parent is not willing to listen to her (his) four-year-old child talking about hissandbox games because she (he) is___________.

    A.boring
    B.very tired
    C.busy
    D.angry

    答案:B
    解析:
    通读第四段,注意短语“fartoo beaten down”,可知父母每天工作非常辛苦和疲惫。所以和孩子的交流沟通少了。正确答案为B。A、C、D都不符合题意。

  • 第3题:

    I__________have been there,but I__________not find the time.

    A.should;would
    B.should;could
    C.might;could
    D.could;could

    答案:B
    解析:
    考查情态动词的用法。句意为:“我本应该去那里,但我没时间。”should have done表示“过去本应做的事而实际上并没有做”,常含有责备、遗憾的语气。

  • 第4题:

    You are signing on a deck officer,who will be designated as one of the GMDSS operators,before sailing foreign.Which statement is TRUE ________.

    A.He/she must have an STCW certificate endorsed as“Valid for Service on Vessels Operating in the GMDSS System”

    B.He/she must present either an FCC-issued license or a Coast Guard-issued license

    C.You must consult the“List of Qualifications”on the reverse of his/her FCC-issued license

    D.His/her Merchant Mariners Document must have an added endorsement as “Radio Electronics Officer”


    正确答案:A

  • 第5题:

    --Where do you think______he______the computer?---Sorry.I have no idea.

    A.has;bought
    B.不填;bought
    C.did;buy
    D.不填;buys

    答案:B
    解析:
    暂无解析

  • 第6题:

    已知基类Employee只有一个构造函数,其定义如下: Employee::Employee(int n):id(n){ } Manager是Employee的派生类,则下列对Manager的构造函数的定义中,正确的是?

    A.Manager::Manager(int n):id(n){}

    B.Manager::Manager(int n){id=n;}

    C.Manager::Manager(int n):Employee(n){}

    D.Manager::Manager(int n){Employee(n);}


    Manger::manger(int n):Employee(n){}