用于三焦热盛诸证的非处方药是 ( )
A.一清胶囊B.芩连片C.三黄片D.黄连上清丸E.六味安消散
参考答案:C
解析:[知识点] 常用非处方中成药——实火证类药
工业制造金刚砂(SiC)的化学方程式如下:SiO2+3C===SiC+2CO↑.在这个氧化还原反应中,氧化剂和还原剂的物质的量之比是 [ ]
A.3∶5
B.1∶2
C.2∶1
D.1∶1
请阅读下列程序代码,然后将程序的执行结果补充完整。 程序代码: public class throwsException static void Proc(int sel) throws ArithmeticException,ArrayIndexOutOfBoundsExceptionSystem.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 0 no Exception caught 【14】 in Proc finally