问题 单项选择题

An analyst estimates that an initial investment of $500 000 in a venture capital project will pay $6 million at the end of five years if the project succeeds and that the probability the project survives to the end fifth year is 25 percent. The required rate of return for the project is 19 percent. The expected net present value of the venture capital investment is closest to.()

A. $128754.

B. $152632.

C. $236486.

答案

参考答案:A

解析:

[分析]: 如果投资项目在5年后获得成功,则投资项目回报的现值为

,从而上述投资回报的净现值为2514296-500000=2014296美元。 风险资本投资的预期净现值=2014296×25%+(-500000)×75%=128574美元 [考点] 根据条件概率计算风险资本项目净现值(NPV)

问答题 简答题
问答题


阅读以下说明和Java代码,将应填入(n)处的字句写在对应栏内。
【说明】
下面的Java程序能够根据用户的输入网址,显示相应网站的内容,并能够跟踪网站的超链接,显示链接的网页。注意输入网址的方式是参数方式。用户未输入网址的情况下,将显示清华大学的主页。
类LinkFollower的对象用于跟踪超链接,类explorer用于显示网页。
【Java程序】
import javax. swing. text.*;
import javax. swing. *;
import java. net. *;
import java.io.*;
import java.awt.*;
import javax.swing.event.*;
class LinkFollower (1) HyperlinkListener
{
JEditorPane pane;
public LinkFollower(JEditorPane pane)
{
this. pane=pane;
}
public void hyperlinkUpdate(HyperlinkEvent evt)
{
if(evt. getEventType()= =HyperlinkEvent. EventType.ACTIVATED)
{
try{
pane.setPage(evt. getURL());
}catch(Exception e){}
}
}
}
public class explorer
{
public static void main(String[] args)
{
String iipage="http://www.tsinghua.edu.cn/";
if(args.length>0)iipage= (2)
JEditorPane jep=new JEditorPane();
jep. setEditable(false);
jep.addHyperlinkListener (3)
try
{
jep.setPage (4)
}
catch(IoExceptione)
{
System.err. println("Usage:java SimpleWebBrower url");
System.err. println(e);
System.exit(-1);
}
JScrollPane scrollpane=new JScrollPane(jep);
JFrame f=new JFrame("我的浏览器");
f.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
f.getContentPane().add(scrollpane);
f. setSize(512,342);
f. (5)
}
}