问题 句型转换

按要求改写下列句子。

1. The boy with a football is Tom's brother. (否定句)

    The boy with a football _____________ _____________ _____________.

2. Can the uncle in the car play rugby well? (肯定句)

    The uncle _____________ _____________ _____________ _____________ play rugby well.

3. There is a bag of bread in the basket. (复数)

    There _____________ some _____________ of _____________ in the basket.

4. Tom can do it like this. (祈使句)

    _____________ _____________ it like this.

5. Please buy a toy for Lily. (否定句)

    _____________ _____________ buy a toy for Lily.

6. There are some boys and girls in the room. (否定句)

    There _____________ _____________ boys _____________ girls in the room.

7. What's wrong with your bike? (同义句)

    What's _____________ _____________ with your bike?

8. Miss Wang is a kind woman. (感叹句)

    _____________ _____________ kind woman Miss Wang is!

9. There is one blue rubber in my pencil-box. (就画线部分提问)

    How _____________ blue _____________ _____________ there in your pencil-box?

10. I can see two markers under the desk. (就画线部分提问)

     _____________ can you _____________ under the desk ?

答案

1. isn't Tom's brother  2. in the car can  3. are, bags, bread  4. Tom, do  5. Please don't  6. aren't any, or

7. the matter  8. What a  9. many, rubbers are  10. What, see

问答题


阅读下列说明,根据网页显示的效果图,回答问题1至问题4,将解答填入对应的解答栏内。
【说明】
以下是用ASP实现的一个在线留言系统。用IE打开网页文件index.html后的效果如图5-1所示。

【index.html 文档的内容】
<html>
<head>
<title>在线留言系统</title>
</head>
<body>
<p align="center"><font color="#006699">在线留言系统</font></p>
<form method="post"action="submit.asp">
<table border="0"cellspacing="1"width="89%">
<tr>
<td>姓名: </td>
<td>< (2) name="name" size="30" class="text" maxlength="20"></td>
</tr>
<tr>
<td>性别: </td>
<td>< (3) name="sex" size="1">
<option selected>请选择你的性别</option>
<option value="男">男</option>
<option value="女">女</option>
</select></td>
</tr>
<tr>
<td><b>简短留言: </font></b></td>
<td>< (4) name=-content" rows="6" cols="45" class="text"></textarea>
</td>
</tr>
<tr>
<td>< (5) name="submit’’ class="btn" value="提交留言"></td>
<td>< (6) name="B1" value="全部重填" class=’!btn"></td>
</tr>
</table>
</form>
</body>
</html>
【submit.asp 文档的内容】
<%
If request.form("name")=" " Then
response.write"<script>alert(’请填写留言人性名!’); history.back()
</script>"
response.end
End If
If request.form("sex")=" " or request.form("sex")="请选择你的性别" Then
response.write"<script>alert ’请选择留言人性别’);history. back()
</script>"
response.end
End If
If len( (7) )>100 Then
response.write"<script>alert(’争议不能超过100字!’); history. back()
</script>"
response.end
End If
%>
<!--#include file="conn.asp" -->
<%
dim rs,sql
set rs=server. (8)
sql="select * from data where (id is null)"
rs.open sql,conn, 1,3
rs. (9)
rs("name")= (10)
rs("sex")=request.form("sex")
rs("content")=request.form("content")
rs("date")=now()
rs("ip")=request.ServerVariables("remote_addr")
rs. (11)
rs.close
conn.close
response.redirect"success.asp"
%>

【问题2】为index.html文件中的(2)~(6)处空缺选择正确答案。 (2)~(6)备选答案:

A.input type="reset" B.input type="submit" C.input type="text" D.Textarea
E.option F.Select G.radio

问答题 简答题