__________________the Manager’s not available at the moment. But the Assistant Manager is here. HowCan I help you, madam?A.I’m afraidB.with our compliments.C.to talk to the Manager?D.It is entirely our fault.

题目
__________________the Manager’s not available at the moment. But the Assistant Manager is here. HowCan I help you, madam?

A.I’m afraid

B.with our compliments.

C.to talk to the Manager?

D.It is entirely our fault.


相似考题
更多“__________________the Manager’s not available at the moment. But the Assistant Manager is here. HowCan I help you, madam? ”相关问题
  • 第1题:

    阅读和理解下面程序段: class Manager extends Employee{ public Manager(String n,double s,int year,int month,int day){ super(n,s,year,month,day); bonus=0; } public double getSalary(){ double baseSalary-super.gerSalary(); return baseSalary+bonus; } public void setBonus(double b){bonus=b; ) private double bonus; } Manager是Employee的子类,其理由是( )。

    A.Manager的适用范围较宽

    B.extends关键字声明

    C.Manager的域减小了

    D.雇员是一个经理


    正确答案:B
    解析:本题考查Java中子类的概念。Java中通过在类声明中加入extends子句来创建子类,格式为:class SubClass extens SuperClass{…}。题目中class Manager extends Employee语句定义Manager类为Employee类的子类,所以选项B是正确答案。Manager类定义了Manager(String n,double s,int year,int month,int day)、getSalary()和setBonus(double b)成员方法和bonus成员变量。

  • 第2题:

    阅读和理解下面程序段:class Manager extends Employee{ public Manager(String n,double s,int year,int month,int day) { super(n,s,year,month,day); bonus=O;} public double getSalary(){ double baseSalary=super,gerSalary(); return baseSalary+bonus;}public void setBonus(double b); { bonus=b; } private double bonus;}Manager是Employee的子类,其理由是

    A.Manager的适用范围较宽

    B.extends关键字声明

    C.Manager的域减小了

    D.雇员是一个经理


    正确答案:B
    解析:本题考查Java中子类的概念。Java中通过在类声明中加入extends子句来创建子类,格式为:class SubClass extens SuperClass{…}。题目中class Manager extends Employee语句定义Manager类为Employee类的子类,所以选项B是正确答案。 Manager类定义了Manager(String n,double s,int year,int month,int day)、getSalary()和 setBonus(doubleb)成员方法和bonus成员变量。

  • 第3题:

    Manager和Agent间,Manager是客户机,Agent是服务器。()


    正确

  • 第4题:

    STCW78/95 Convention states that the officer in charge of the engineering watch is the representative

    A.ship-owner's

    B.master's

    C.chief engineer's

    D.manager's


    正确答案:C

  • 第5题:

    Youpurchaseawildcardcertificate.YouplantousethecertificateforOutlookAnywhere.YouneedtoconfigureanExchangeorganizationtousethecertificate.Whatshouldyoudofirst?()

    A.FromtheExchangeManagementShell,modifythepropertiesoftheWEBOutlookProvider.

    B.FromtheExchangeManagementShell,modifythepropertiesoftheEXPROutlookProvider.

    C.FromtheInternetInformationServices(IIS)Manager,modifythepropertiesoftheRPCvirtualdirectory.

    D.FromtheInternetInformationServices(IIS)Manager,modifythepropertiesoftheAutodiscovervirtualdirectory.


    参考答案: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){}