车间日作业计划信息查询ERP系统挂在哪个模块中()
A、计划模块
B、库存模块
C、能力模块
D、计划模块与综合查询模块
参考答案:D
用灌砂法测定土的密度时应先做出______。
A.确定灌砂筒下部锥体内砂的重量
B.标定罐的容积、标准砂的密度
C.灌砂筒上储砂筒的容积
D.标定罐及灌砂筒的重量
下列JApplet使用重写paintCompon6t()方法来绘制图像,请填写正确的代码在横线处。 import java.awt.*; import javax.swing.*; public class Test extends JApplet staic String fileName = "img().gif"; public void init() Container cp = getContentPane(); cp.setLayout(new GridLayout(1,1)); Image i = getImage(getCodeBase(),fileName); MyImagePanel ip=new MyInmagePanel(i); cp. add (ip); class MyImagePanel extends JPanel Image i; public MyImagePanel(Image img) this.i = img; public void paintComponent(Graphics gg) 【15】 ; gg.drawImage(i,20,20,this);