练习题III
- 格式:pdf
- 大小:67.62 KB
- 文档页数:16


Ⅰ.词汇知识
1.________ adj.乐观(主义)的→________ n.乐观(主义)
2.________ n.沙漠;荒原→________ vt.遗弃;舍弃
3.________ n.公民;居民;市民
4.________ n.打字员→________ n.打字机→________ vt.& vi.打字
5.________ n.邮资→________ n.邮政编码
6.________ n.瞬间;片刻 adj.立即的;立刻的
7.________ n.生态;生态学
8.________ adj.贪吃的;贪婪的;贪心的
9.________ n.原料;材料
10.________ adj.回收利用;再利用
11.________ n.代表;典型人物 adj.典型的;有代表性的→________ v.代表
12.________ n.定居;解决→________ vt.
答案:;optimism ;desert
4.typist;typewriter;type ;postcard
7.ecology
11.representative;represent ;settle
Ⅱ.重点短语
1.________________ 加速
2.________________ 在太空
3.________________ 三十一世纪一些最新的发明
4.________________ 处理;清除
5.________________ 被转化为
6.________________ 在空间站
答案: up space most uptodate inventions of the 31st century of
turned into space station
Ⅲ.必背句型
1.__________________________(太空站被描绘成一个巨大的圆盘),it spins slowly
PEP小学英语三年级下册Unit 3 检测题
Listening Part(听力部分)
I. Listen and number(根据你听到的内容给下面的图片标上序号)
II. Listen and tick.(听一听,根据听到的内容判断图片表达的意思是否正确)
III. Listen and circle (听一听,圈出恰当的图片)
1. 2. 3. 4.
5. 6. 7.
IV. Listen and circle. (听一听,圈出你所听到的单词)
1. fat short leg
2. thin big tall
3. long small so
4. fat thin tall
5. giraffe children deer
V. Listen and number. (听一听,根据你听到的内容给下面句子标上序号)
( ) Come here, children!
( ) Where are you from?
( ) It has a long nose and short tail.
( ) Who’s that man?
( ) She’s my mother.
( ) It’s so tall.
( ) No, he isn’t.
VI. Listen and number.(听一听,给每组中的单词排列顺序)
1.
2.
3.
4.
VII. Listen and write. (听一听,写一写)
Writing Part(笔试部分)
VIII. Read and circle.(读一读,圈出不同类的单词)
Module 7 A famous story
综合能力演练
I. 单项选择
1._______ the street,and you can get to the factory.
A.Jump over B.Go across C.Take off D.Go through
2.He was reading a book when his classmate ran _______ him.
A.across B.through C.by D.in
3.What are you helping a stranger _______?
A.off B.of C.at D.for
4.I _______ my homework at this time yesterday evening.
A.am doing B.did C.was doing D.do
5.— Do you have anything else to say?
— No,_______.
A.anything B.nothing C.something D.everything
6.If you want to learn English well,you must use it as _______ as possible.
A.often B.long C.hard D.hardly
7.While I _______ to the programs,my mother _______ outside.
A.listened;was washing
B.was listening;washed
C.was listening;was washing
练习 3
一、个人简历/index.asp
请编写一个简单的个人简历程序,要求可以通过文本框输入姓名,通过单选按钮设置性别,通过下拉列表框选择文化程度,通过文本区域填写其他个人信息;通过文件对话框选择照片并显示;通过两个下拉列表框来关联选择籍贯。主要通过对窗体和各控件相应的事件处理函数进行编程,包括窗体的Load、下拉框的SelectedIndexChanged、按钮的Click事件。界面效果:
二、设计一个加法速度测试程序,程序启动后显示出如图所示的运行界面。用户单击“开始”按钮后开始计时,并分别在文本框1、2中显示加数和被加数,用户在文本框3中输入答案,按回车键后程序在答案的后面指示对错,并显示出下一道题。一分钟以后程序统计出出题数量和作对的数量,此时用户可以单击“继续”按钮继续测试或退出。
using System;
using System.Collections.Generic;
using ponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace jishiqi
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public int count = 0;
public int int_clock = 0;
public int i, j, x, y;
public string m, n;
private void timer1_Tick(object sender, EventArgs e)