()特征反映了人类的需要和动物的需要具有本质区别。
A.动力性
B.独特性
C.社会性
D.对象性
参考答案:C
解析:人的需要和动物的需要有着本质的不同,即人的需要具有社会性。故选C。
下图为“太阳系模式图”读图完成下列各题。
(2)太阳辐射为地球上的生物繁衍生长提供了 。
(3)与其他行星相比,地球上有利于生命存在的条件主要有哪些?
____________________________________________________________________________________。
仔细阅读person.xml和person.xsl文件,回答后面的问题。person.xml:<xml version="1.0"encoding="gb2312"><!--File Name:person.xml--><Xml-stylesheet type="text/xsl"href="person.Xsl"><persons> <person><name>张明</name><code>008</code><E-mail>zhangming@hotmail.com</E-mail><score1>98</score1> </person> </persons> person.xsl: <xml version="1.0"encoding="gb2312"> <!--File Name:person.Xsl--> <xsl:stylesheet xmlns:xsl="http:∥www.w3.org/TR/WD-xsl"> <xsl:template match="/"> <xsl:for-each select="persons/person"> <table border="1"><tr><td> <span style="fom-weight:bold;color:black">姓名:</span> <xsl:value-of select="name"/><br/> <span style="font-weight:bold;color:black">编号:</span> <xsl:value-of select="code"/><br/> <span style="font-weight:bold;color:black">电子邮件:</span> <xsl:value-of select="E-mail"/><br/> <span style="font-weight:bold;color:black">成绩1:</span> <xsl:value-of select="scorel"/><br/></td></tr></table><br/><br/></xsl:for-each></xsl:template></xsl:stylesheet>问题:
person.xsl使用了与person.xml相同的文档声明语句,为什么 (2分)