为了保证发动机的润滑良好,机油压力越高越好。
参考答案:错
下列关于甲醇(化学式为CH3OH)的说法正确的是( )
A.甲醇是由1个碳元素、4个氢元素、和1个氧元素组成的
B.甲醇是由1个碳原子、4个氢原子、和1个氧原子构成
C.甲醇中碳、氢、氧的质量比为1:4:1
D.甲醇的相对分子质量为32
阅读下列程序,请写出该程序的功能。 import java. awt. *;import java. awt. event. *;import java. applet. *; public class Test34 extends Applet implements ActionListener String msg=" ";Button bList[]=new Button[3]; public void init() Button yes=new Button("Yes");Button no=new Button("No"); Button maybe=new Button("Undecided"); bList[0]=(Button)add(yes);bList[1]=(Button)add(no); bList[2]=(Button)add(maybe); for(int i=0;i<3;i++) bList[i].addActionListener(this);public void actionPerformed(ActionEvent ae) for(int i=0;i<3;i++) if(ae.getSource()==bList[i]) msg="You pressed"+bList[i].getLabel(); repaint(); public void paint(Graphics g)g.drawString(msg,6,100);