救治抗凝血类灭鼠药中毒的特效药是() A.立止血 B.酚磺乙胺(止血敏) C.维生素

题型:单项选择题

问题:

救治抗凝血类灭鼠药中毒的特效药是()

A.立止血

B.酚磺乙胺(止血敏)

C.维生素K1

D.安络血

E.氨甲苯酸

考点:北京住院医师全科医学Ⅰ阶段临床药理学临床药理学题库
题型:单项选择题

区域性批发企业之间因特殊情况需要调剂麻醉药品和第一类精神药品的,应在调剂后2日内分别报备案的部门是()

A.县级药品监督管理部门

B.设区的市级药品监督管理部门

C.省、自治区、直辖市人民政府药品监督管理部门

D.国务院药品监督管理部门

E.国务院卫生行政部门

题型:单项选择题

急性心肌梗死出现Ⅲ度房室传导阻滞,治疗应选()

A.人工心脏起搏器

B.阿托品

C.电复律

D.利多卡因

E.胺碘酮

题型:单项选择题

下列实现C语言语句printf("Hello!")的相同功能的语句是( )。

A.cout>>"Hello!"

B.cin>>"Hello!"

C.cout<<"Hello!"

D.cin<<"Hello!"

题型:单项选择题

根据我国《公司法》的规定,( )可以作为国有独资公司的投资主体。

A.国家授权的部门

B.国有企业

C.有限责任公司

D.股份有限公司

题型:单项选择题

本题中,主窗口有一个按钮“打开对话框”和一个文本域,单击按钮“打开对话框”后会弹出一个对话框,对话框上有两个按钮“Yes”和“No”,单击对话框上的“Yes”和“No”按钮后返回主窗口,并在右侧文本域中显示刚才所单击的按钮信息。
import java. awt. event. * ;
import java. awt. * ;
class MyDialog______implements ActionListener
static final int YES=1, NO=0;
int message=-1; Button yes, no;
MyDialog(Frame f, String s, boolean b)
super(f, s, b);
yes=new Button("Yes"); yes. addActionListener(this);
no=new Button ("No"); no. addActionListener(this);
setLayout (new FlowLayout());
add(yes); add(no);
setBounds(60,60,100,100);
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
message=-1; setVisible(false);
);

public void actionPerformed(ActionEvent e)
if(e. getSource()=yes)
message=YES;
setVisible(false);

else if(e. getSource()==no)
message=NO;
setVisible(false);


public int getMessage()
return message;


class Dwindow extends Frame implements ActionListenet
TextArea text; Button button; MyDialog dialog;
Dwindow(String s)
super(s);
text=new TextArea(5,22); button=new Button("打开对话框");
button. addActionListener(this);
setLayout(new FlowLayout());
add(button); add(text);
dialog=new MyDialog(this, "Dialog", true);
setBounds(60,60,300,300); setVisible(true);
validate();
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
System. exit(0);
);

public void actionPerformed(ActionEvent e)
if(e. getSource()==button)
______;
if(dialog, getMessage()==MyDialog. YES)
text. append("\n你单机了对话框的yes按钮");

else if(dialog. getMessage()==MyDialog. NO)
text. append("\n你单机了对话框的No按钮");




public class java2
public static void main(String args[])
new Dwindow("java2");

更多题库