—Is this your cat? —No, it . [ ]
A. am
B. isn't
C. can
答案:B
下列实验操作中,溶液里最终无固体析出的是( )
A.Ca(OH)2溶液中通入足量CO2气体
B.FeCl3溶液中加入Na2O
C.饱和Ca(OH)2溶液中加入一小粒Na
D.胆矾溶液中加入少量Na的小颗粒
关于下列代码编译或执行结果的描述中,正确的是( )。 public class Test public static void main(String args[]) TestThread pm1=new TestThread("One") pm1.start(); TestThread pm2=new TestThread("Two") pm2.start(); class TestTbread extends Thread( private String sTname=""; TestThread(String s) sTname=s; public void run() for(int i=0;i<2;i++) try sleep(1000); catch(InterruptedException e) system.out.print(sTname+"");
A.不能通过编译,TestThread类中不能定义变量和构造方法
B.输出One One Two Two
C.输出Two One One Two
D.选项B或C都有可能出现