下列财务评价指标中,反映项目偿债能力的指标是:()
A.投资回收期
B.利息备付率
C.财务净现值
D.总投资收益率
参考答案:B
解析:利用备付率属于反映项目偿债能力的指标。
使用VC6打开考生文件夹下的工程test12_1,此工程包含一个源程序文件test_12.cpp,但该程序运行有问题,请改正程序中的错误,使该程序的输出结果如下: fun (Sample &p) 1 2 fun (Sample *p) 3 4 20 10 源程序文件test12_1清单如下: #include<iostream .h> class Sample { private: int x,y; static int z; public: Sample(int a,int b){ x=a;y=b; } void fun(Sample &p); void fun(Sample *p); static void print(Sample s); }; /*************** found ***************/ int z=10; void Sample::fun(Sample &p) { x=p.x;y=p.y; cout<<"fun(Sample &p)"<<" "<<x<<" "<<y<<endl; } void Sample::fun(Sample *p) { /************** found **************/ x=p.x; y=p.y; cout<<"fun(Sample *p) "<<" ’<<x<<" "<<y<<endl; } void Sample::print (Sample s) { /*************** found *****************/ x=20; cout<<s. x<<" "<<z<<endl; } void main() { Sample p(1,2),q(3,4); p. fun(p); p. fun(&q); p. print(p); }
建设工程项目的现金流量按当年价格预测时,确定基准收益率需要综合考虑的因素包括()。
A.经营规模
B.通货膨胀
C.投资周期
D.资金成本
E.资金限制