试题与答案

完形填空 I ran into a stranger as he passed

题型:完形填空

题目:

完形填空
     I ran into a stranger as he passed by. "Oh, excuse me please" was my _1  . He said: "Please excuse
me too; I wasn't watching for you." We were very    2  , this stranger and I. We went on our way and we
said goodbye. But at home a   3   story is told.
     Later that day, when I was cooking the evening meal, my daughter stood beside me very   4  . When I   5  , I nearly knocked her down. "Move out of the    6  ," I said with a frown. She walked away, her
little heart broken. I didn't   7   how harshly (严厉地) I'd spoken.
     While I lay awake in bed that evening, my husband said to me, "While   8   a stranger, you are polite,
but with the girl you love, you are   9  . Go look on the kitchen floor; you'll find some flowers by the door.  
Those are the flowers she brought for   10  . She picked them herself: pink, yellow and blue. She
stood quietly not to   11   the surprise, and you   12   saw the tears in her eyes."
     _13  , my tears began to fall. I quietly went and knelt down by her bed. "Wake up, little girl," I said.
"Are these flowers you picked for me?" She smiled: "I found them out by the tree. I picked them   14  
they're pretty like you. I knew you'd like them, especially the blue."
     I said: "Daughter, I'm sorry for the way I   15   today. I   16   have yelled at you that way."
     She said: "Oh Mom, that's okay. I love you anyway."
    I said: "Daughter, I love you too. And I do like the flowers, especially the blue."
    I had got the world   17   again. I'd   18   to be polite to people in the street - good   19   make
society work. But a stranger is someone we bump into once and then never see again - and   20   is for
life.
( )1. A. answer    
( )2. A. careful  
( )3. A. interesting  
( )4. A. still    
( )5. A. called    
( )6. A. house    
( )7. A. realize  
( )8. A. referring to  
( )9. A. anxious    
( )10. A. us          
( )11. A. ruin        
( )12. A. seldom      
( )13. A. By this time
( )14. A. while        
( )15. A. considered  
( )16. A. shouldn't  
( )17. A. clear        
( )18. A. begin        
( )19. A. manners      
( )20. A. lover        
B. words      
B. polite    
B. meaningful    
B. noisy      
B. turned    
B. space      
B. care      
B. listening to
B. patient    
B. you        
B. expect    
B. simply    
B. At one time  
B. so        
B. acted      
  B. couldn't    
B. right      
B. learn      
B. habits    
B. companion    
                  
C. response    
C. serious    
C. similar    
C. upset    
C. returned    
C. way      
C. prove     
C. dealing with
C. disappointed
C. the family  
C. announce    
C. even      
C. For a time  
C. unless    
C. developed  
C. wouldn't  
C. beautiful  
C. continue    
C. lifestyles  
C. family    
D. speech                
D. unhappy              
D. different            
D. excited              
D. removed              
D. area                  
D. understand            
D. picking up            
D. unkind                
D. her friends          
D. handle                
D. never                
D. At the same time      
D. because              
D. performed            
  D. mustn't          
D. meaningful            
D. change                
D. behaviors            
D. friend                

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0628/bdf6e6eceef5f59b24328704cc4c9efa.html

下面是错误答案,用来干扰机器的。

答案:B铁和氯气直接化合生成的是氯化铁,选项A不正确;金属铝和盐酸或氯气反应都是生成氯化铝,选项C不正确;同样钠和氯气或盐酸反应都是生成氯化钠、铜盐酸不反应,和氯气反应生成氯化铜,选项B正确,答案选B。

试题推荐
题型:问答题

【说明】
一、静态网页制作
某电子商务公司用ASP实现了一个用于手机销售信息查询的网页,主页文件名为“index.html”,其文档内容如下。
[index.html文档内容]
<html>
<head>
<title>易搜手机资讯广场</title>
</head>
<frameset cols="198, *" "border=0">
<frame name="side" src="side.html" scrolling="No">
<frameset rows=’96, *" "border=0">
<frame name="top" src="top.html" scrolling="No">
<frame name="main" src="main.asp" scrolling="Auto">
</frameset>
</frameset>
<body>
</body>
</html>
二、动态网页编程
图6-9是用户按品牌型号进行查询时的网页(main.asp)在IE浏览器上运行后的效果图。表6-9是手机信息数据库表结构。


表6-9 数据库字段说明表

字段名 类型 备注    字段名 类型 备注
Id 自动编号 记录编号 Price 货币 参考价格
Brand 文本 手机品牌 Function 文本 功能描述
Type 文本 手机型号
其中,Brand字段下共有两种数据:moto、nokia,分别代表摩托罗拉、诺基亚。
【main.asp文档的内容】
<html>
<head>
<title>易搜手机资讯广场</title>
</head>
<body bgcolor="#ffffff" background="bg1.gif" text="#000000">
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<left>
<!-以下为实现按手机型号搜索功能的部分-->
<from name="form1" method="post" action="main_search.asp">
<div align="left">
<table width="400" border="0">
<tr>
<td align="right" width="120">请输入<font color="ff0000">型号</font>关键字:</td>
<td align="left" width="40">
<input name="Searchtxt" type="text" id="Searchtxt"></td>
<td colspan="2" align="left">
<input type="submit" name="Submit" value="搜索"></td>
</tr>
</table>
</div>
</form>
</left>
</table>
<!-以下为浏览手机信息部分功能>
<table>
<center>
<%dim searchtext searchtext=Request.Form ("Mobel")
exec="select * from mod order by Type ASC"
set conn=server.createobject ("adodb.connection")
dbpath=server.mappath ("mod.mdb")
conn.open "PROVIDER=Microsoft.jet.OLEDB.4.0;data source="&dbpath
set rs=server.createobject ("adodb.recordset")
rs.open exec, conn, 1, 3
<!-省略关于分页功能的代码>
%>
<div align="right">
<table border="1" width="100%">
<tr>
<th width="20%"><font color="#996633" size="2">品牌</font></th>
<th width="20%"><font color="#996633" size="2">型号</font></th>
<th width="20%"><font color="#996633" size="2">参考价格</fonr></th>
<th width="40%"><font color="#996633" size="2">功能描述</font></th>
</tr>
</table><br>
<% do while NOT rs.EOF and rowcount>0%>
<div align="right">
<table border="1" width="100%">
<tr>
<td align="center" width="20%"><font size="2"><%=rs (Brand) %></font></td>
<td align="center" width="20%"><a herf="<%=rs ("type") %>.asp"><font size="2"><%=rs ("Type") %></font></a></td>
<td align="center" width="20%"><font size="2"><%=rs (Price) %></font></td>
<td align="center" width="40%"><font size="2"><%=rs (Function) %></font></td>
</tr>
</table>
</div>
<%rowcount=rowcount-1%>
<%rs.MoveNext’ 指向下一条%>
<%LOOP%>
<br>
<!--省略关于分页功能的代码>
</div></center></td></tr>
</table>
</body>
</html>

【问题5】
假设连接的数据记录集当前指向的记录见表6-10。
表6-10 数据库字段说明表

Id Brand Type Price Function
9 三星 X458 1300 彩屏
写出以下ASP代码经过IIS服务器解释后的结果。
<td align="center" width="20%">
<a href="<%=rs ("Type") %>.asp"><font size="2"><%=rs("Type") %></font></a>

查看答案
微信公众账号搜索答案