某外源性化学物质的蓄积系数K>5时,表明该物质的蓄积毒性为()。
A.高度蓄积
B.明显蓄积
C.中等蓄积
D.低度蓄积
E.无蓄积
参考答案:D
---Our mum is _____about our homework.
----Yes, she will check our homework before we hand it in.
A.strict
B.like
C.interested
D.good
有以下程序 void f(int *q) int i=0; for(;i<5;i++) (*q)++; main( ) int a[5]=1,2,3,4,5,i; f(a); for(i=0;i<5;i++) printf("%d,",a[i]); 程序运行后的输出结果是
A)2,2,3,4,5, B)6,2,3,4,5, C)1,2,3,4,5, D)2,3,4,5,6,