分别用于外业调查与测量、内业编绘的土地勘测定界的工作底图一般有( )套。
A.2
B.3
C.4
D.5
参考答案:B
凸轮等速运动曲线采用()划线比较精确。
A.圆弧划线法
B.逐点划线法
C.分段划圆弧法
下列程序的功能是在监控台上每隔一秒钟显示一个字符串"Hello!",能够填写在程序中下划线位置,使程序完整并能正确运行的语句是 public class Test implements Runnablepublic static void main(String args[])Test t=new Test();Thread tt=new Thread(t);tt.start(); public void run()for(;;) try ______; catch(______e) System.out.println("Hello");
A.sleep(1000) InterruptedException
B.sleep(1000) InterruptedException
C.Thread.sleep(1000) RuntimeException
D.Thread.sleep(1000) InterruptedException