片面强调部门保护主义,追求部门利益,既可能造成部门之间职能交叉越位,又可能造成职能缺

题型:判断题

问题:

片面强调部门保护主义,追求部门利益,既可能造成部门之间职能交叉越位,又可能造成职能缺位。 ( )

考点:国家公务员公共基础知识公共基础知识
题型:判断题

施工过程根据( ),可以分解为工序、工作过程和综合工作过程。

A.工艺特点
B.系统完整性
C.组织复杂程度
D.技术有效程度

题型:判断题

投资决策是指按照一定的程序、方法和标准,对( )以及投资项目的选择和布局等方面所做的决断。

A.投资规模、投资地址、投资结构、投资分配
B.投资规模、投资方向、投资地址、投资年限
C.投资年限、投资方向、投资结构、投资地址
D.投资规模、投资方向、投资结构、投资分配

题型:判断题

下面程序是一个计时器,从1000秒开始倒计时,直到为0结束。在界面上有两个按钮,一个可以暂停计时,另一个可以继续已经暂停的计时。请更正题中带下划线的部分。
注意:不改动程序的结构,不得增行或删行
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
public class Example3_4 extends Applet

public Color color = Color.red;
private int num= 1000;
public Counter theCounter;
private Button stop;
private Button start;
public void init()

stop = new Button("暂停");
start = new Button ("继续");
theCounter = new Counter(this);
stop.addActionListener(new Lst() implements ActionListener
public void actionPerformed(ActionEvent e)

theCounter.sus();

);
start.addActionListener(new SuspenListener());
add(start);
add(stop);
theCounter.start();

public void paint(Graphics g)

g.setCotor(color);
g.drawString(String.valueOf(num),50,50);

public void setInt(int i)

num=i;

class SuspenListener implements ActionListener

public void actionPerformed(ActionEvent e)

theCounter.conti ();



public class Counter extends Thread

Example3_4 example;
boolean isHold;
Counter (Example3_4 ex)

this.example = ex;
isHold = false;

public void sus()

isHold = true;

public synchronized void conti()

isHold = false;
notify();

public void run()

for (int i = 1000; i>0; i--)

if (i%2 == 1)
example.color = Color.red;
else
example.color = Color.blue;
example.setInt(i);
example.repaint();
try

sleep(1000);
synchronized
while(isHold)
wait ( );


catch (InterruptedException ie)




<HTML>
<HEAD>
<TITLE>Example3_4</TITLE>
</HEAD>
<BODY>
<applet code="Example3_4.class" width=300 height=400>
</applet>
</BODY>
</HTML>

题型:判断题

()是保证支架性能的重要元件。

A、安全阀

B、被控单向阀

C、立柱

D、操纵阀

E、过滤器

题型:判断题

线岔处两工作支接触线与轨面的高度应相等,侧线工作支接触线允许高于正线工作支接触线()mm。

更多题库