股份有限公司中股东的权益主要体现在( )。A.股票上 B.公司资本的稳定性上 C.

题型:单项选择题

问题:

股份有限公司中股东的权益主要体现在( )。

A.股票上

B.公司资本的稳定性上

C.股息上

D.有限责任上

考点:国家公务员公共基础知识公共基础知识
题型:单项选择题

在安装传动轴时,必须使()的轴心线与离合器装配基准孔的轴心线重合。

A.齿顶园

B.齿根园

C.离合器内孔

D.齿形

题型:单项选择题

在DGS8800e数字调速系统中,若要进行参数修改,则()。

A.只需要打开实物锁

B.只需要输入数字密码

C.既要打开实物锁又要输入数字密码

D.可直接进行修改

题型:单项选择题

关于企业内非正式组织,下列说法错误的是( )。

A.非正式组织没有一个确定的正式目标

B.非正式组织的成员往往是变动的

C.非正式组织的活动是由于人们的兴趣、爱好相投,或者由于共同的习惯而形成的自发的、自觉的活动,而且相对稳定

D.非正式组织的群体之间及其群体成员之间,都没有正式的稳定的隶属关系

题型:单项选择题

企业有一台设备因事故提前报废,对该台设备的折旧处理应是( )。

A.从下月起停止计提折旧

B.补提折旧

C.从本月开始停止计提折旧

D.继续按月计提折旧直到提足为止

题型:单项选择题

本题中,通过菜单“Connect”显示一个对话框,单击“ok”按钮后,所填写的内容就会传回到主窗口并显示出来。
import java. awt. * ;
import java. awt. event. * ;
import javax. swing. * ;
public class java3 extends JFrame implements ActionListener
public java3()
setTitle("java3");
setSize(300,300);
addWindowListener(new WindowAdapter()
public void windowClosing(WindowEvent e)
System. exit(0);

);
JMenuBar mbar=new JMenuBar();
setJMenuBar(bar);
JMenu fileMenu=new JMenu("File");
mbar. add(fileMenu);
connectItem=new JMenuItem("Connect");
connectltem. addActionListener(this);
fileMenu. add(connectItem);
exitItem=new JMenuItem("Exit");
exitItem. addActionListener(this);
fileMenu. add(exitItem);

public void actionPerformed(ActionEvent evt)
Object source=evt. getSource();
if (source==connectItem)
ConnectInfo transfer=new ConnectInfo("yourname", "pw");
if(dialog==null)
dialog=new ConnectDialog(this);
if(dialog. showDialog(transfer))
String uname=transfer. username;
String pwd=transfer. password;
Container contentPane=getContentPane();
contentPane. add(new JLabel("username="+uname+", password="+pwd), "South");
validate();


else if(source==exitItem)
System. exit(0);

public static void main(String[] args)
JFrame f=new java3();
f. show();

private ConnectDialog dialog=null;
private JMenuItem connectltem;
private JMenuItem exitItem;

class Connectlnfo
public String username;
public String password;
public ConneetInfo(String u, String p)
username=u; password=p;


class ConnectDialog extends JDialog implements ActionListener
public ConnectDialog()
super(parent, "Connect", true);
Container contentPane=getContentPane();
JPanel p1=new JPanel();
p1. setLayout(new GridLayout(2,2));
p1. add(new JLabel("User name:"));
p1. add(username=new JTextField(""));
p1. add(new JLabel("Password:"));
p1. add(password=new JPasswordField(""))
contentPane. add("Center", p1);
Panel p2=new Panel();
okButton=addButton(p2,"Ok");
cancelButton=addButton(p2, "Cancel");
contentPane. add( "South", p2);
setSize(240,120);

JButton addButton(Container c, String name)
JButton button=new JButton(name);
button. addActionListener(this);
c. add(button);
return button;

public void actionPerformed(ActionEvent evt)
Object source=evt. getSource();
if(source==okButton)
ok=true;
setVisible(false);

else if (source==cancelButton)
setVisible(faIse);

public void showDialog(ConnectInfo transfer)
username. setText(transfer. username);
password. setText(transfer. password);
ok=false;
show();
if(ok)
transfer. username=username, getText();
transfer. password=new String(password. getPassword());

return ok;

private JTextField username;
private JPasswordField password;
private boolean ok;
private JButton okButton;
private JButton cancelButton;

更多题库