下列各项中属于酌量性固定成本的是( )。
A.直线法计提的固定资产折旧费
B.长期租赁费
C.直接材料费
D.广告费
参考答案:D
解析: A、B属于约束型固定成本,C属于变动成本。
《统计法》规定,地方人民政府、政府统计机构或者有关部门、单位的负责人有统计违法行为的,应当承担法律责任。这些违法行为包括( )。
A.自行修改统计资料
B.要求统计机构、统计人员或者其他机构、人员伪造、篡改统计资料
C.打击报复依法履行职责或者拒绝、抵制统计违法行为的统计人员
D.对本地方、本部门、本单位发生的严重统计违法行为失察
E.编造虚假统计数据
以下程序运行后的输出结果是 【10】 。 #include <iostream> #include <string> using namespace std; class Y; class X { iht x; char *strx; public: X(int a,char *str) {x=a;strx=new char[strlen(str)+1];strcpy(strx,str); } void show(Y &ob); }; class Y { private: iht y; char *stry; public: Y(int b,char *str) {y=b;stry=new char[strlen(str)+ 1] ;strcpy(stry, str);} friend void X::show(Y &ob);}; void X::show(Y &ob) { cout<<strx<<","; cout<<ob.stry<<endl; } int main() { X a(10,"stringX"); Y b(20,"stringY");a.show(b);return 0; }