甲公司是一个制造企业,为增加产品产量决定添置一台设备,预计该设备将使用2年。该设备可

题型:问答题

问题:

甲公司是一个制造企业,为增加产品产量决定添置一台设备,预计该设备将使用2年。该设备可以通过自行购置取得,也可以租赁取得。目前甲公司正与租赁公司就租金事宜进行谈判。双方的有关情况如下:
(1)甲公司如果自行购置该设备,预计购置成本2000万元。2年后该设备的变现价值预计为1100万元。营运成本(包括维修费、保险费和资产管理成本等)每年80万元。
(2)租赁公司购置该设备的成本为1900万元,预计该资产5年后变现价值为100;营运成本(税前)每年70万元。
(3)该设备的税法折旧年限为5年,残值率为购置成本的5%。
(4)甲公司和租赁公司的所得税率均为25%,投资项目的资本成本均为12%。
要求:

计算甲公司可以接受的租金的最大值;

考点:注册会计师财务成本管理其他长期筹资(二)
题型:问答题

一个标有“4V  2W”字样的灯泡,给它两端加2V电压时,不考虑温度对它电阻的影响,则(  )

A.此时灯泡的实际功率为0.5W

B.此时灯泡中电流为1A

C.此时灯泡中电流为0.5A

D.此时灯泡的实际功率为1W

题型:问答题

本题中,通过菜单“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");
connectItem.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 connectItem;
private JMenuItem exitItem;

class ConnectInfo
public String username;
public String password;
public Connectfnfo(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(false);

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;

题型:问答题

哪一年的税收收入增长速度最快()

A.2004

B.2005

C.2005

D.2007

题型:问答题

“尽信书,不如无书”这句话是以下哪位思想家说的?()

A、孔子

B、庄子

C、孟子

D、墨子

题型:问答题

什么叫半开式叶轮?

更多题库