通信系统具备的三个要素是()
A.终端、电缆、计算机
B.信号发生器、通信线路、信号接收设备
C.终端、通信设施和通信媒体
D.信源、通信媒体、信宿
参考答案:D
使用水泥砂浆及细石混凝土做保护层的施工环境温度宜为()℃。
A.0~35
B.5~35
C.0~30
D.5~30
下列程序的功能是在监控台上每隔一秒钟显示一个字符串"Hello!",能够填写在程序中下划线位置,使程序完整并能正确运行的语句是【 】public class Test implements Runnable{ public 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) InteruptedException
B.t.sleep(1000)InterruptedException
C.Thread.sleep(1000)RuntimeException
D.Thread.sleep(1000) InterruptedException