热水网路膨胀、排气和除污等,()装置的位置及灵敏可靠程度是系统能否安全运行的关键。
A、调节
B、调试
C、安全
D、保证
参考答案:C
综合应用题下面是一个Applet程序,其功能是实现网页上的电子时钟,要求显示的格式为hh:mm:ss如02:04:50。提示:通过获取当前系统时间来实现。请改正程序中的错误(有下划线的语句),使程序能输出正确的结果。注意:不改动程序的结构,不得增行或删行。程序运行结果如下:
import java.applet.*;import java.awt.*;import java.util.Date;public class ex9_3 extends Applet implements Runnable{ private Thread thTimer = null; private String strTime; private int tHour,tMin,tSec;public void init(){ setFont(new Font("Times New Roman",Font.BOLD,20)); } public void paint(Graphics Graph){ Date dNow = new Date(); tHour = dNow.getHours(); tMin = dNow.getMinutes(); tSec = dNow.getSeconds(); if(tHour<=9) strTime = "0" + tHour + ":"; else strTime = tHour + ":"; if (tMin<=9) strTime = "0" + strTime + tMin + ":"; else strTime = strTime + tMin + ":"; if(tSec<=9) strTime = "0" + strTime + tSec; else strTime = strTime + tSec; Graph.drawString(strTime,80,80); } public void start(){ if(thTimer == null){ thTimer = new Thread(); thTimer.start(); } } public void run(){ while(thTimer != null){ repaint(); try{Thread.sleep(1000); } catch (InterruptedException ie){ } } }ex9_3.html
读六大板块图,回答下列问题。(10分)
(1)写出下列板块的名称。(5分)
A. ,C. ,D. ,E. ,
F. 。
(2)图中几乎全为海洋的板块是: 。(写名称,1分)
(3)图中可以看出世界两大火山地震带是 和 ,多处于板块与板块交界地带,该地带容易发生 和 。(4分)