许多生的食品,特别是家禽、肉类及未经消毒的牛奶常被()污染,彻底加热可杀灭。
A、细菌
B、病毒
C、寄生虫
D、病原体
参考答案:D
具有活血祛瘀、散结止痛功用的方剂是()。
A.复元活血汤
B.血府逐瘀汤
C.生化汤
D.温经汤
E.失笑散
下列程序的运行结果是______。 Class C14 implements Runnable private int i; public C14(int n) this.i = n; public void run) try Thread.currentThread().sleep(i); catch(InterruptedException ie) System.err.println(ie.tString()); System. out.println("线程" + Thread.currentThread() .getName + "睡眠了" + i + "毫秒结束"); public class Testl4 public static void main(String[] args) Thread t = new Thread(new C14(300), "t"); t.start();
A.线程t睡眠了300毫秒结束
B.线程Thread-0睡眠了300毫秒结束
C.线程t睡眠了i毫秒结束
D.线程Thread-0睡眠了i毫秒结束