Questions 8-10Do the following statements agree with the information given in the Reading Passage 1In boxes 8-10 on your answer sheet, writeTRUE if the statement agrees with the informationFALSE if the statement contradicts the informationNOT GIVEN if there is no information on this The way people built houses under the shadow of volcanoes or in earthquake-prone zones might help to protect them from natural dangers.()
查看答案
Human beings are animals. We breathe, eat and digest, and reproduce the same life (21) common to all animals. In a biological laboratory rats, monkeys, and humans seem very much the same. However, biological understanding is not enough: (22) itself, it can never tell us what human beings are. (23) to our physical equipment the naked human body--we are not an (24) animal. We are tropical creatures, (25) hairless and sensitive to cold. We are not fast and have neither claws nor sharp teeth to defend ourselves. We need a lot of food but have almost no physical equipment to help us get it. In the purely physical (26) , our species seems a poor (27) for survival. But we have survived--survived and multiplied and (28) the earth. Some day we will have a (29) living on the moon, a place with neither air nor water and with temperatures that turn gases into solids. How can we have done all these things Part of the answer is physical. (30) its limitations, our physical equipment has some important (31) . We have excellent vision and hands that can (30) objects with a precision unmatched by any other (33) . Most importantly, we have a large brain with an almost (34) number of neural (35) .
A. animal
B. animals
C. creatures
D. creature
Human beings are animals. We breathe, eat and digest, and reproduce the same life (21) common to all animals. In a biological laboratory rats, monkeys, and humans seem very much the same. However, biological understanding is not enough: (22) itself, it can never tell us what human beings are. (23) to our physical equipment the naked human body--we are not an (24) animal. We are tropical creatures, (25) hairless and sensitive to cold. We are not fast and have neither claws nor sharp teeth to defend ourselves. We need a lot of food but have almost no physical equipment to help us get it. In the purely physical (26) , our species seems a poor (27) for survival. But we have survived--survived and multiplied and (28) the earth. Some day we will have a (29) living on the moon, a place with neither air nor water and with temperatures that turn gases into solids. How can we have done all these things Part of the answer is physical. (30) its limitations, our physical equipment has some important (31) . We have excellent vision and hands that can (30) objects with a precision unmatched by any other (33) . Most importantly, we have a large brain with an almost (34) number of neural (35) .
A. bet
B. chance
C. fact
D. luck
北京市某化妆品有限公司为增值税一般纳税人,2010年6月发生以下各项业务: (1)以一般海运方式进口一批化妆品,成交价格1180000元、运费20000元。在自海关运往单位的途中发生运费8000元,未取得运费发票。此化妆品入库后,其中的75%被生产领用继续加工化妆品;(经海关审查,公司申报的完税价格未包含保险费,公司的解释是相关费用无法确定,海关对此依法进行调整) (2)受托加工化妆品一批,委托方提供的原材料不含税金额85000元,加工结束向委托方开具普通发票收取加工费和添加辅助材料的含税金额共计46800元,该化妆品无同类产品市场销售价格; (3)当月将生产的A化妆品销售给某商场,取得不含税销售额1500000元;合同约定分三期结算,自当月起,每月末结算一次。 (4)预收款方式销售B化妆品215000套,不含税单价58元/套,货物已经发出。同时发生运费支出和建设基金共计2000元,取得了运费发票; (5)取得化妆品的逾期包装押金收入140400万元。 (6)为某影视公司定做演员用的油彩和卸妆油一批,收取价税合计678600万元,另收取运输费150000元,优质费20200元,均开具增值税普通发票; (7)通过当地非独立核算的门市部销售试制的新型化妆品100套,成本为100元/套,不含税单价为130元/套; (8)从农业生产者手中收购免税农产品一批,支付收购价款70万元,取得农产品销售发票,支付运输企业运费10万元,取得运输发票。 (本月取得的相关发票均在本月申请并通过认证,进口关税为20%;化妆品消费税税率30%) 要求:根据上述资料,按下列序号计算回答问题,每问需计算出合计数:(以元为单位) 计算进口化妆品应缴纳的消费税;
已知数据文件IN14.DAT中存有200个4位数,并已调用读函数readDat() 把这些数存入数组a中,请编制一个函数jsVal(),其功能是:把千位数字和十位数字重新组成一个新的十位数ab(新十位数的十位数字是原4位数的千位数字,新十位数的个位数字是原4位数的十位数字),以及把个位数字和百位数字组成另一个新的十位数cd(新十位数的十位数字是原4位数的个位数字,新十位数的个位数字是原4位数的百位数字),如果新组成两个十位数ab-cd>=0且ab-cd<=10且两个数均是奇数,同时两个新十位数字均不为零,则将满足此条件的4位数按从大到小的顺序存入数组b中,并要计算满足上述条件的4位数的个数cnt,最后调用写函数writeDat()把结果cnt及数组b中符合条件的4位数输出到OUT14.DAT文件中。注意:部分源程序已给出。 程序中已定义数组:a[200],b[200],已定义变量:cnt。请勿改动主函数main()、读函数readDat()和写函数writeDat()的内容。试题程序:#include#define MAX 200int a[MAX], b[MAX], cnt = 0;void jsVal(){}void readDat(){int i;FILE *fp;fp = fopen("IN14.DAT", "r");for(i = 0; i < MAX; i++)fscanf(fp, "%d", &a[i]);fclose(fp);}main(){int i;readDat();jsVal();printf("满足条件的数=%d\n", cnt);for(i = 0; i < cnt; i++)printf("%d ", b[i]);printf("\n");writeDat();}writeDat(){FILE *fp;int i;fp = fopen("OUT14.DAT", "w");fprintf(fp, "%d\n", cnt);for(i = 0; i < cnt; i++) fprintf(fp, "%d\n", b[i]);fclose(fp);}