题目内容

医疗机构药师的职责包括

A. 参与个体化药物治疗方案的设计与实施
B. 开展抗菌药物临床应用监测
C. 提供用药信息与药学咨询服务
D. 进行药学临床应用研究

查看答案
更多问题

下列程序的运行结果是______。 public static ArrayTest{ public static void main(String[] args){ int data[] [] = {{1,2,3,4,5},{11,22,33,44,55},{111,222,333, 444,555}}; for(int i=0;i< data.length;i++){ if(i%2==0) { System.out.println(data[i] [4]+" "); } } } }

A. 5 555
B. 5 55
C. 555
D. 55

抽象类是______。

A. 不能派生子类的类
B. 不能实例化的类
C. 所有的方法都是抽象方法的类
D. 方法体为空的类

下列选项中,能实现对父类的getSalary方法重写的是______。 class Employee{ public Double getSalary(){}; }

A. class Manager extends Employee{ public int getSalary(Double x){};}
B. class Manager extends Employee{ public Double getSalary(int x,int y){};}
C. class Manager extends Employee{ public Double getSalaryO{};}
D. class Manager extends Employee{ public int getSalary(int x,int y){};}

下列程序的运行结果是______。 public class Shape {public Shape(){ System.out.println("shape"); } } public class Circle extends Shape { public Circle(){ System.out.println("Circle"); } public static void main(String args[]) {Shape d = new Circle() } }

A. Shape
B. Circle
C. ShapeCircle
D. 程序有错误

答案查题题库