第18题: [多项选择]根据建筑工程相关的基本规定,应按下列哪些要求进行建筑工程施工质量验收()。 A. 建筑工程施工质量应符合本标准和相关专业验收规范的规定 B. 建筑工程施工应符合工程勘察、设计文件的要求 C. 工程质量的验收均应在施工单位自行检查评定的基础上进行 D. 隐蔽工程在隐蔽前应由施工单位通知有关单位进行验收,并应形成验收文件 参考答案:A, B, C, D
第31题: [单项选择]It can be inferred from the passage that ______. A. killing foxes with poison is illegal B. limiting the fox population is unnecessary C. hunting foxes with dogs is considered cruel and violent D. fox-hunting often leads to confrontation between the poor and the rich 参考答案:C
第35题: [单项选择]有如下程序: public class Sun { public static void main(String args[ ]) { int s=0; int i=1; while(i<=100) { s=s+i; } System.out.println(s); } } 运行后的结果是( )。 A. 5050 B. 5051 C. 死循环,直到溢出 D. 无穷大的数 参考答案:C 答案解析:[解析] 本题考查对while循环语句的理解。在while语句中的条件再循环中必须有加的可能,循环才能正常结束。如条件恒为真,循环永无终止地进行下去,出现死循环。此程序由于i的值始终小于0,因此,这是