A.I’m afraid
B.with our compliments.
C.to talk to the Manager?
D.It is entirely our fault.
第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.雇员是一个经理
第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.雇员是一个经理
第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
第5题:
A.FromtheExchangeManagementShell,modifythepropertiesoftheWEBOutlookProvider.
B.FromtheExchangeManagementShell,modifythepropertiesoftheEXPROutlookProvider.
C.FromtheInternetInformationServices(IIS)Manager,modifythepropertiesoftheRPCvirtualdirectory.
D.FromtheInternetInformationServices(IIS)Manager,modifythepropertiesoftheAutodiscovervirtualdirectory.
第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);}