Theory of income distribution 收入分配理论
第1题:
2.请用收入分配职能理论来分析收入分配组合的公共经济学含义。
第2题:
词根-thet-、-thes- 的涵义是()。
A.theory 理论
B.to put, to place 放置、制定
C.the 定冠词
D.rule 法则
第3题:
【单选题】下面的个人所得税程序中,满足语句覆盖测试用例的输入数据是() if (income < 800) taxRate= 0; else if (income <= 1500) taxRate = 0.05 ; else if (income < 2000) taxRate = 0.08 ; else taxRate= 0.1 ;
A.income = (800, 1500, 2000, 2001)
B.income = (800, 801, 1999, 2000)
C.income = (799, 1499, 2000, 2001)
D.income = (799, 1500, 1999, 2000)
第4题:
输入数据 a<-c("男","女","女","女","男","女"),income<-c(10000,8000,6700,8900,12000,9000) 请按照性别统计每个性别下的收入income的平均值、标准差?
第5题:
对下面的计算个人所得税程序中,满足判定覆盖的测试用例是()。 if (income<800) taxrate=0; else if (income<=1500) taxrate=0.05; else if (income<2000) taxrate=0.08; else taxrate=0.1;
A.income=(799, 1500, 1999, 2000)
B.income=(799, 1501, 2000, 2001)
C.income=(800, 1500, 2000, 2001)
D.income=(800, 1499, 2000, 2001)