A 0.020 mol·kg-1solution of each of the following compounds is prepared. Which solution would freeze at -0.149 °C?Kf(H2O) = 1.86 K·kg·mol-1
A. Na[CoY]
B. [Cr(NH3)5Cl]Cl2
C. [Cr(NH3)6]Cl3
D. [Co(en)2Cl2]Cl
查看答案
[Ag(S2O3)2]3-的Ks=a,[AgCl2]-的Ks=b,则下列反应的平衡常数K为[Ag(S2O3)2]3-+2Cl-=[AgCl2]-+2S2O32-
A. ab
B. a+b
C. b/a
D. a/b
已知[HgCl4]2-的Ks=1.2×1015,[HgI4]2-的Ks=6.8×1029,则下列反应向右进行。[HgCl4]2-+4I-= [HgI4]2-+4Cl-
A. 对
B. 错
以下关于JavaScript中的定时器说法正确的是()
A. setInterval() 按照指定的周期(以毫秒计)来调用函数或计算表达式。
B. setTimeout() 在指定的毫秒数后调用函数或计算表达式。
C. setInterval()方法会不停地调用函数,直到 clearInterval() 被调用或窗口被关闭。
D. setTimeout()只会执行一次。
var str="Hello world!";想要从str变量中提起出"world",下面的代码正确的是()
A. str.substring(6,11)
B. str.substring(7,11)
C. str.substr(7,4)
D. str.substr(6,5)