手术前护士收集的患者资料中,属于客观资料的是
A.瘙痒B.恶心C.腹痛D.血压E.恐惧
参考答案:D
解析:只有血压是器械测量出来的结果,其余选项都是患者主诉的。
男性,65岁。手脚麻木伴头晕三个月,并时常有鼻出血。体检:脾肋下3.0cm,肝肋下1.5cm。检验:血红蛋白量150g/L,血小板数1100×106/L,白细胞数21×109/L
首先考虑是下列哪一种疾病()
A.慢性粒细胞白血病
B.慢性中性粒细胞白血病
C.继发性血小板增多症
D.原发性血小板增多症
E.骨髓增生性疾病
请阅读下列程序代码,然后将程序的执行结果补充完整。程序代码:public class throwsException{ static void Proc(int sel) throws ArithmeticException,ArrayIndexOutOfBoundsException{ System.out.println("In Situation"+sel); if(sel==0){ System.out.println("no Exception caught"); return; }else if(sel==1){ int iArray[]=new int[4]; iArray[1]=3; } } public static void main(String args[]){ try{ Proc(0); Proc(1) }catch(ArrayIndexOutOfBoundsException e){ System.out.println("Catch"+e); }finally{ System.out.println("in Proc finally"); } }}执行结果:In、Situation 0no Exception caught【 】in Proc finally