● 阅读以下说明,回答问题1至问题2,将解答填入答题纸对应的解答栏内。
【说明】
某公司为推广洗涤新产品,需要进行用户体检调查。图4-1为调查表填写页面,表4-1所示为利用Microsoft Access创建的数据库,它将记录被调查用户的姓名、性别、年龄、了解产品方式和评价等信息。
【问题1】(6分)
以下是图4-1所示页面的部分代码,请仔细阅读该段代码,将(1)~(6)的空缺代码补齐。
<body>
<p><strong>为了让更多的人对我们的产品使用放心,请填写下表</strong></p>
<form id="form" method="POST" action="">
<table width="350" border="1" align="center" cellpading="0" cellspacing="0" >
<tr>
<td width="100">姓名</td><td><input type="text" name="(1)" value=""></td>
</tr>
<tr>
<td>性别</td>
<td><input name="xxx" type="radio" id="radio" value="true" checked="(2)" />男
<input name="xxx"type="radio" id="radio2" value="(3)" />女</td>
</tr>
……
<tr>
<td colspan="(4)"><input type="(5)" name="sub" id="sub" value="提交" />
<input type="reset" name="reset" id="reset" value="重置" /></td>
</tr>
</table>
<(6)>
</body>
(1)~(6)备选答案:
(4)A.submit B.user C.false D.2 E.checked F./form
【问题2】(9分)
用户填写调查问卷后,将转到统计页面,如图4-2所示。统计页面将显示目前所参与调查的人数、按性别统计与占比、按年龄统计与占比等信息。下面是统计页面的部分代码,请将代码补充完整。
<%
......
sql="SELECT xxx,count(xxx)as xxxNum FROM (7)group by (8)ORDER BY xxx desc"
注释:按照性别统计
Rs1.open (9),conn
While Not Rs1.eof
If Rs1("xxx")="(10)"Then
xxxNum_1=Rs1("xxxNum")
End If
If Rs1("xxx")="false" Then
xxxNum_2=Rs1("(11)")
End If
Rs1.movenext
Wend
countNum=xxxNum_1+xxxNum_2
......
%>
<body>
<p><strong>此次活动已经有<%=(12)%>人参加,其中</strong></p>
<table width="350" border="1" align="center" cellpading="0" cellspacing="0" >
<tr>
<td width="350" colspan="2" >性别</td>
</tr>
<tr>
<td width="100">男</td>
<td><%=xxxNum_1%>人, 占<%=FormatPercent((13)/countNum)%></td>
</tr>
<tr>
<td width="100">女</td>
<td><%=(14)%>人,占<%=FormatPercent(xxxNum_2/countNum)%></td>
</tr>
......
</table>
<%(15)%>
(7)~(15)备选答案:
(5)A.true B.Rs1.close C.xxxNum_1 D.xxxNum_2
E.invest F.xxxNum G.xxx H.countNum I.sql
各省软考办 | ||||||||||