问题 单项选择题

Research on animal intelligence always makes me wonder just how smart humans are. (91) the fruitfly experiments described in Carl Zimmer’s piece in the Science Times on Tuesday. Fruit flies who were taught to be smarter than the average fruit fly (92) to live shorter lives. This suggests that (93) bulbs burn longer, that there is an (94) in not being too terrifically bright.
Intelligence, it (95) , is a high-priced option. It takes more upkeep, burns more fuel and is slow (96) the starting line because it depends on learning—a gradual (97) —instead of instinct. Plenty of other species are able to learn, and one of the things they’ve apparently learned is when to (98) .
Is there an adaptive value to (99) intelligence That’s the question behind this new research. I like it. Instead of casting a wistful glance (100) at all the species we’ve left in the dust I.Q. wise, it implicitly asks what the real (101) of our own intelligence might be. This is (102) the mind of every animal I’ve ever met.
Research on animal intelligence also makes me wonder what experiments animals would (103) on humans if they had the chance. Every cat with an owner, (104) , is running a small-scale study in operant conditioning, we believe that (105) animals ran the labs, they would test us to (106) the limits of our patience, our faithfulness, our memory for terrain. They would try to decide what intelligence in humans is really (107) , not merely how much of it there is. (108) , they would hope to study a (109) question. Are humans actually aware of the world they live in (110) the results are inconclusive.

A.By accident

B.In time

C.So far

D.Better still

答案

参考答案:C

解析: A选项意为“偶然”;B选项意为“及时”;C选项意为“迄今为止”;D选项意为“更好的是”。根据空格处的句意“迄今为止,这个问题还未得出肯定的结论”可以判断,正确选项是C。

阅读理解
问答题

【说明】
以下是用ASP实现了一个网络收藏夹网页,用于保存用户感兴趣的Web网页地址。用IE打开网页文件“index.asp”后的效果如图4-14所示。程序中使用的Access数据表结构见表4-8。


表4-8 Access数据表结构表

字段名 类 型 备 注
no 自动编号 序号
name 文本 主页名称
url 文本 超链接
category 文本 网站类别
【index.asp文档的内容】
<% @language="VBscript" %>
<%
set conn=server. (1) ("Adodb.Cormection")
provider="Provider=Microsoft.Jet.OLEDB.4.0;"
path="Data Source="& Server.MapPath("main.mdb")
connstR=provider & path
conn.open connstr
%>
<html>
<head><title>网络收藏夹</title></head>
(2)
<center>
<%
set rs=Server.CreateObject("Adodb.RecordSet")
sql="select * from address"
rs.open() sql,conn,1,3
if Request("name")="" or Request("url")="" then
Response.write("内容填写不完整")
else
rs.addnew
rs(1)=request("name")
rs(2)=request("URL")
rs(3)=request("category")
rs.update
end If
%>
<table width="500" border=-"1" cellpadding="0" cellspacing="0" bordercolor="#00FCFF">
<tr><td>序 号</td><td>名 称</td><td>类 别</td></tr>
<% rs.movefirst
for j=1 to ts. (3) %>
<tr>
<td><%=j%></td>
<td><a href="<%=rs("url")%>" target="blank"><%=rs("name")%></a></td>
<td><%=rs("category")%></td>
</tr>
<% rs.movenext
(4) %>
</table><br>
<form method="post" name="new" id="new" action="index.asp">
<table width="300" border="1" cellpadding="0" cellspacing="0" bordercolor="#FF00CC">
<tr>
<td width="61">名 称:</td>
<td width="223" align="left"><input name="name" type="text" id="name">*</td>
</tr>
<tr>
<td>超链接:</td>
<td align="left"><input name="URL" type="text" id="URL">*</td>
</tr>
<tr>
<td colspan="2">类别:</td>
</tr>
<tr>
<td colspan="2"><textarea name="category" rows="5" id="disc"></textarea></td>
</tr>
<td colspan="2">*为必填项目</td>
</table><br>
(5)
</form>
<%
rs.close
conn.close
%>
</center>
</body>
</html>

【问题3】
网页中使用的数据库连接引擎是什么连接的后台数据库文件名是什么