文档库 最新最全的文档下载
当前位置:文档库 › 4数据查询课后习题

4数据查询课后习题

4数据查询课后习题
4数据查询课后习题

习题

一、选择题

1.下列可用于创建一个新表并用已存在的数据填充到新表中的选项是()。A.SELECT INTO

B.UNION

C.子查询

D.联接

2.下面是聚合函数的选项是()。

A.distinct

B.sum

C.if

D.top

3.()子句为聚合函数生成汇总值,并作为一个附加的行显示在结果集中。A.COMPUTE

B.EXISTS

C.UNION

D.DISTNCT

4.()子句可以与子查询一起使用以检查行或列是否存在。

A.UNION

B.EXISTS

C.DISTNCT

D.COMPUTE BY

5.下面哪个是Transac-SQL语言中的赋值运算符?()

A.= =

B.=

C.:=

D.::=

6.下列()类型的索引总要对数据进行排序。

A.聚合索引

B.非聚合索引

C.组合索引

D.惟一索引

7.在SELECT语句中,下列哪种子句用于选择列表()。

A.SELECT子句

B.INTO子句

C.FROM子句

D.WHERE子句

8.在SELECT语句中,下列哪种子句用于将查询结果存储在一个新表中()。A.SELECT子句

B.INTO子句

C.FROM子句

D.WHERE子句

9.在SELECT语句中,下列哪种子句用于将数据按照某个字段分组()。A.SELECT子句

B.GROUP BY子句

C.FROM子句

D.WHERE子句

10.在SELECT语句中,下列哪种子句用于对分组统计进一步设置条件()。A.SELECT子句

B.GROUP BY子句

C.HA VING子句

D.WHERE子句

11.在SELECT语句中,下列哪种子句用于对搜索的结果进行排序()。A.SELECT子句

B.GROUP BY子句

C.ORDER BY子句

D.WHERE子句

12.Transac-SQL语言提供()语言向数据表中插于记录。

A.SELECT

B.INSERT

C.DELETE

D.UPDATE

13.如果想将数据修改正确,并更新到数据库中,应该使用()语句。A.SELECT

B.INSERT

C.DELETE

D.UPDATE

14.Transact-SQL语言提供()语言删除数据表中的记录。

A.SELECT

B.INSERT

C.DELETE

D.UPDATE

15.在SELECT语句中,如果想要返回的结果集中不包含相同的行,应该使用关键字()。

A.TOP

B.AS

C.DISTINCT

D.JOIN

16.在哪种索引中,表中各行的物理顺序与键值的逻辑(索引)顺序相同()?A.聚簇索引

B.非聚簇索引

C.两者都有

D.两者都不是

17.下列哪种情况下适合使用聚簇索引()?

A.包含大量非重复的列,即该列或多列的组合在数据表的记录中重复值极少

B.精确匹配查询的搜索条件WHERE子句中经常使用的列

C.包含数量有限的唯一值的列

D.以上都不对

18.下列哪种数据类型的列不能作为索引的列()?

A.image

B.char

C.int

D.datetime

19.如果表创建唯一索引后SQL Server将禁止()语句向表中添加重复的键值行。A.INSERT

B.INSERT或UPDA TE

C.UPDATE

D.ADD

20.下列关于查询结果错误的是()。

A.查询结果可以显示在表格中

B.查询结果可以按文本方式显示

C.以文本和表格显示的查询结果在保存时,其文件格式不同

D.不管以那种方式查看,查询结果都会显示在查询结果窗口中

21.SQL Server2008提供的单行注释语句是使用()开始的一行内容。

A.“/*”

B.“--”

C.“{”

D.“/”

22.不属于SQL Server 2008系统全局变量的是()。

A.@@Error

B.@@Connections

C.@@Fetch_Status

D.@Records

23.以下哪种情况应尽量创建索引()。

A.在Where子句中出现频率较高的列

B.具有很多NULL值的列

C.记录较少的基本表

D.需要更新频繁的基本表

24.下列聚集函数中不忽略空值(null)的是()

A.SUM(列名)

B.MAX(列名)

C.COUNT(*)

D.A VG(列名)

25.对由SELECT--FROM—WHERE—GROUP--ORDER组成的SQL语句,其在被DBMS 处理时,各子句的执行次序为()A.SELECT—FROM—GROUP—WHERE—ORDER

B.FROM——SELECT--WHERE——GROUP——ORDER C.FROM——WHERE——GROUP——SELECT——ORDER D.SELECT——FROM——WHERE——GROUP——ORDER

26.下列()是对索引的描述

A.定义了一个有相关列和行的集合

B.当用户修改数据时,一种特殊形式的存储过程被自动执行

C.SQL语句的预编译集合

D.它根据一或多列的值,提供对数据库表的行的快速访问

二、填空题

1.SELECT语句用TOP 、DISTINCT 指定查询的显示范围,使用INTO 子语句创建新表,使用ORDER BY 子句指定排序字段,使用WHERE 指定查询条件,GROUP BY 指定分组条件,使用HAVING 指定分组后的查询条件。

2.SELECT语句对查询结果排序时,使用ORDER BY子句指定排序字段,使用ASC 指定升序,使用DESC 指定降序。

3.SELECT语句对多表查询可以使用LEFT 、RIGHT 、INNER 、连接方式,子查询分为IN 、EXISTS 两种

4.在使用Create Index语句创建簇时,需要使用的关键字是CLUSTERED ;建立惟一索引的关键字是UNIQUE 。

5.在SQL Server的数据库中按组成字段方式不同,索引分为两类:单列和复合。

6.使用T-SQL语句管理表的数据,插入记录语句是INSERT,修改记录是UPDATE,删除记录语句是DELETE。

7.SELECT语句中两个必不可少的子句是SELECT和FROM。

8.运算符是一种符号,用来指定要在一个或多个表达式中执行的操作。SQL Server 2008常使用算术运算符、比较运算符、赋值运算符、字符串串联运算符、逻辑运算符、按位运算符、和一元运算符。

9.在SQL Server中,其变量共分为两种:一种是全局变量,另一种是局部变量。

10.用SELECT 进行模糊查询时,可以使用__ LIKE__ 运算符,但要在条件值中使用___%_____或____下划线____等通配符来配合查询。并且,模糊查询只能针对字段类型是____字符___的查询。

三、应用题

在图书管理数据库中完成下列查询

1.完成“查询所有读者情况”查询任务;

解答:

SELECT *

FROM 读者;

2.完成“查询图书资料降序排列”查询任务;

解答:

SELECT *

FROM 图书

ORDER BY 定价DESC;

3.完成“刘姓读者信息查询”等查询任务;

解答:

SELECT *

FROM 读者

WHERE 读者姓名LIKE …刘%?

4.完成“读者总人数”等查询任务;

解答:

SELECT COUNT(*)

FROM 读者;

5.完成“各出版社图书总数”查询任务;

解答:

SELECT COUNT(书名)AS 总数,出版社

FROM 图书

GROUP BY 出版社

6.完成“查询读者姓名和可借阅数量”任务;

解答:

SELECT 读者姓名,可借数量

FROM 读者,读者类别

WHERE 读者.读者类别=读者类别.读者类别编号

7.完成“可借阅数量为10的读者信息”查询任务,使用嵌套查询。

解答:

SELECT 读者姓名,性别,工作单位

FROM 读者

WHERE 读者类别= ( SELECT 读者类别编号

FROM 读者类别

WHERE 可借数量=10 )

在学生数据库中完成

1、列出stud_info学生信息表中所有记录的name、gender和

address列。

select name,gender,address from dbo.stud_info

2、将学号0401010717,姓名代燕,课程号0401010104,成绩60

插入stud_grade学生成绩表中。

insert into dbo.stud_grade values('0401010717','代燕','0401010104','60')

3、显示stud_grade学生成绩表中成绩为85、86或88的记录。select*from dbo.stud_grade where grade in

(85,86,88)

4、显示stud_grade学生成绩表中成绩在60到80之间的所有记录select*from dbo.stud_grade where grade between 60and80

5、显示stud_grade学生成绩表中的最高分的学生学号和课程号select stud_id,course_id from dbo.stud_grade

where

grade=(select MAX(grade)from dbo.stud_grade)

6、以入学成绩mark降序显示stud_info学生信息表中的所有记

录。

select*from dbo.stud_info order by mark ASC 7、显示课程号是0401010106的平均分

select AVG(grade)from dbo.stud_grade where course_id='0401010106'

8、显示出与学号0401040112的学生同年出生的所有学生的学

号、姓名和出生日期

select stud_id,name,birthday from dbo.stud_info where

YEAR(birthday)=(select YEAR(birthday)from dbo.stud_info where stud_id='0401040112')

9、显示课程号是0401010105的学生人数和老师姓名

select COUNT(name)from dbo.stud_grade where course_id='0401010105'

select name from dbo.teacher_info where course_id ='0401010105'

10、将stud_grade学生成绩表中课程号是0401010106的成绩加5

update stud_grade set grade=grade+5 where course_id='0401010106'

全新版大学英语(第二版)综合教程4课后练习答案

全新版大学英语综合教程4(第二版)习题答案 Unit 1 Vocabulary I. 1. 1) alliance 2) at the cost of 3) stroke 4) limp 5) minus 6) regions 7) declarations 8) siege 9) raw 10) bide his time 11) have taken their toll 12) in the case of 2. 1) is faced with 2) get bogged down 3) is pressing on / pressed on 4) drag on 5) get by 6) dine out 7) have cut back 8) get through 3. 1) lead to the conquest of cancer in the near future 2) has been brought to a halt by the delayed arrival of raw materials due to the dock workers’ strike 3) will/should never get in the way of her career 4) caught the foreign minister off guard 5) of the electronic calculator has rendered the slide rule out of date/obsolete 4. 1) Being faced with … the occupation of … regions 2) crucial to … efficient … to reckon with … weaken … be brought to a halt 3) a heroic … the decisive … turned the tide … siege … by launching II. More Synonyms in Context 1) During the First World War, battles occurred here and there over vast areas. Some of the most dramatic fighting took place in the gloomy trenches of France and Belgium. 2) Elizabeth made careful preparations for the interview and her efforts / homework paid off. 3) I spent hours trying to talk him into accepting the settlement, but he turned a deaf ear to all my words. 4) Pneumonia had severely weakened her body, and I wondered how her fragile body could withstand the harsh weather. III. Usage 1) fall ill 2) lay dead at home for two weeks 3) dropped dead from a heart attack 4) fell asleep. 5) marrying young 6) to sit still for longer than a few minutes

2015高中数学必修4第三章经典习题含答案

第三章经典习题 本试卷分第Ⅰ卷(选择题)和第Ⅱ卷(非选择题)两部分。满分150 分。考试时间120分钟。 第Ⅰ卷(选择题 共60分) 一、选择题(本大题共12个小题,每小题5分,共60分,在每小题给出的四个选项中只有一个是符合题目要求的) 1.sin 2 π12-cos 2 π12的值为( ) A .-1 2 B.1 2 C .-3 2 D.32 [答案] C [解析] 原式=-(cos 2 π12-sin 2 π12)=-cos π6=-32. 2.函数f (x )=sin2x -cos2x 的最小正周期是( ) A.π23 B .π C .2π D .4π [答案] B [解析] f (x )=sin2x -cos2x =2sin(2x -π4),故T =2π 2=π. 3.已知cos θ=13,θ∈(0,π),则cos(3π 2+2θ)=( ) A .-429 B .-79 C.429 D.79

[答案] C [解析] cos(3π2+2θ)=sin2θ=2sin θcos θ=2×223×13=42 9. 4.若tan α=3,tan β=4 3,则tan(α-β)等于( ) A .-3 B .-1 3 C .3 D.13 [答案] D [解析] tan(α-β)=tan α-tan β 1+tan αtan β=3-43 1+3× 43=1 3. 5.cos 275°+cos 215°+cos75°·cos15°的值是( ) A.54 B.62 C.32 D .1+2 3 [答案] A [解析] 原式=sin 2 15°+cos 2 15°+sin15°cos15°=1+12sin30°=5 4. 6.y =cos 2x -sin 2x +2sin x cos x 的最小值是( ) A. 2 B .- 2 C .2 D .-2 [答案] B [解析] y =cos2x +sin2x =2sin(2x +π 4),∴y max =- 2. 7.若tan α=2,tan(β-α)=3,则tan(β-2α)=( )

大学英语综合教程4课后翻译

攻势已经持续了三天,但是我们并没有取得多少进展。我们在前线与敌人交战的部队遇到了强力的抵抗。师长(DIVISION COMMANDER)命令我们营(BATTALION)绕到敌人后方发起突然袭击。然而,要绕到敌人后方,我们必须越过一片沼泽地(MARSHLAND)。我们很多人担心会陷入泥潭之中。我们营长决定冒一下险。我们在夜幕掩盖下出发,不顾困难,奋勇向前。幸运的是,夜间温度突然下降到摄氏零下20度,烂泥地都结上了冰。由于这寒冷的天气,我们于天亮前到达并从敌人后方发起进攻。这一下扭转了战局。敌人没有戒备,不久便投降了。 The offensive had already lasted three days, but we had not gained much ground. Our troops engaging the enemy at the front were faced with strong/fierce/stiff resistance. The division commander instructed our battalion to get around to the rear of the enemy and launch a surprise attack. To do so, however, we had to cross a marshland and many of us were afraid we might get bogged down in the mud. Our battalion commander decided to take a gamble. We started under cover of darkness and pressed on in spite of great difficulties. By a stroke of luck, the temperature at night suddenly dropped to minus 20 degrees Celsius and the marsh froze over. Thanks to the cold weather, we arrived at our destination before dawn and began attacking the enemy from the rear. This turned the tide of the battle. The enemy, caught off guard, soon surrendered. Unit 2 汽车在二十世纪改变了世界,尤其是在美国和其他工业国家。汽车确实对我们大有用处,但也带来了一些危害,比如声音污染、空气污染以及公路死亡事故。据报导汽车事故被列为全世界导致死伤的主要原因之一。可庆幸的是,现代发明家们正在重新发明汽车。新的推进系统(PROPULSION SYSTEM)、燃料、设计以及制造汽车的手段在过去的十年中得到迅速发展。例如,通过使用卫星辅助的全球定位系统,汽车里的计算机能给汽车精确定位;随着遥感器的应用,智能汽车能排除不少汽车事故。 Automobiles changed the world during the 20th century, particularly in the United States and other industrialized nations. They are indeed of great use to us, but they have brought some hazards as well, such as noise and air pollution, and highway fatalities. It is reported that automobile accidents rank among the leading causes of death and injury throughout the world. Fortunately modern innovators are reinventing the automobile. New propulsion systems, fuels, designs, and means of manufacturing cars have all developed rapidly in the past decade. For example, by using the satellite-aided global positioning system (GPS), a computer in the automobile can locate the vehicle's precise position, and with the application of sensors, smart cars can eliminate most car accidents.

(完整版)全新版大学英语第二版综合教程4课后答案全

Unit 1 lexf Organization

II. More Synonyms in Context 1) During the First World War, battles occurred here and there over vast areas. Some of the most dramatic fighting took place in the gloomy trenches of France and Belgium. 2) Elizabeth made careful preparations for the interview and her efforts / homework paid off. 3)1 spent hours trying to talk him into accepting the settlement, but he turned a deaf ear to all my words. 4) Pneumonia had severely weakened her body, and I wondered how her fragile body could withstand the harsh weather.

- 90 - Appendix I III. Usage 1)But often it is not until we fall ill that we finally learn to appreciate good health. 2)A rich old lady lay dead at home for two weeks—and nobody knew anything about it. 3)It's said he dropped dead from a heart attack when he was at work 1)Don't sit too close to the fire to keep warm—you could easily get burned, especially if you fall asleep. 4)In those days people believed in marrying young and having children early. 5)Little Tom was unable to sit still for longer than a few minutes. ■ Structure 1. 1) To his great delight, Dr. Deng discovered two genes in wild rice that can increase the yield by 30 percent. 2)To her great relief, her daughter had left the building before it collapsed. 3)To our disappointment, our women's team lost out to the North Koreans. 4)We think, much to our regret, that we will not be able to visit you during the coming Christmas. 2. 1) These birds nest in the vast swamps (which lie to the) east of the Nile. 2)By 1948, the People's Liberation Army had gained control of the vast areas north of the Yangtze River. 3)Michelle was born in a small village in the north of France, but came to live in the United States at the age of four. ■ 4) The Columbia River rises in western Canada and continues/runs through the United States for about 1,900 kilometers west of the Rocky Mountains. Comprehensive Exercises I. Cloze (A) 1. invasion 3. Conquest 5. launching 7. campaign 9. reckon with 2. s tand in the way 4. c atching... off his guard 6. d eclaration 8. d rag on 10. b ringing...to a

高中数学必修4测试题

高一周末考试数学试题 (必修4部分,2018年3月31 日) 一、选择题 (本大题共12小题,每小题5分,共60分.) 1.已知点P (tan ,cos )在第三象限,则角 在( ) A .第一象限 B .第二象限 C .第三象限 D .第四象限 2 .函数 y sin2x , x R 是( ) A .最小正周期为 的奇函数 B .最小正周期为 的偶函数 C .最小正周期为2的奇函数 D .最小正周期为2的偶函数 3 .已知a 与b 均为单位向量,它们的夹角为60,那么I ; 3b|等于( ) A . 7 B . 10 C . .13 D . 4 4.已知M 是厶ABC 的BC 边上的中点,若向量AB =a,AC = b ,则向量AM 等 于( ) 1 A .丄(a — b) 2 1 B . - (b — a) 2 1 C . -( a + b) 2 D . 1 -(a + b) 2 5 .若 是厶ABC 的一个内角,且sin cos 1 ,贝卩 sin 8 cos 的值为( ) <3 A.— B .仝 C . 三 D. ■■- 5 2 2 2 2 6.已知 —,贝S (1 tan )(1 4 tan )的值是( ) A . — 1 B . 1 C . 2 D . 4 7.在ABC 中,有如下四个命题: iuu iuu uu ① AB AC BC ; ② AB BC CA 0 ; ③ 若(AB AC ) (AB AC ) 0,则ABC 为等腰三角形; ④ 若 AC AB 0 ,贝S ABC 为锐角三角形.其中正确的命题序号是( ) B .①③④ D .②④ )在一个周期内的图象如下, ( ) B . y 2sin (2x ) 3 A .①② C .②③ 8 .函数 y Asin( x 此函数的解析式为 2 A . y 2sin(2x ) 3

全新版大学英语综合教程4课后习题含答案

全新版大学英语综合教程4课后习题答案 Unit 1 I. Vocabulary 1. 1) alliance 2) at the cost of 3) stroke 4) limp 5) minus 6) regions 7) declarations 8) siege 9) raw 10) bide his time 11) have taken their toll 12) in the case of 2. 1) is faced with 2) get bogged down 3) is pressing on / pressed on 4) drag on 5) get by 6) dine out 7) have cut back 8) get through 3. 1)The rapid advance in gene therapy may lead to the conquest of cancer in the near future. 2)Production in many factories has been brought to a halt by the delayed arrival of raw materials due to the dock workers’strike. 3)Sara has made up her mind that her leisure interests will/should never get in the way of her career. 4)Obviously the reporter's question caught the foreign minister off guard. 5)The introduction of the electronic calculator has rendered the slide rule out of date. 4. 1)Being faced with an enemy forces much superior to ours, we had to give up the occupation of big cities and retreat to the rural and mountainous regions to build up our bases. 2)Unity is crucial to the efficient operation of an organization. Failure to reckon with this problem will weaken its strength. In many cases, work may be brought to a halt by constant internal struggle in an organization. 3)The Red Army fought a heroic battle at Stalingrad and won the decisive victory against the Germans.In fact, this battle turned the tide in the Second World War. During this famous battle, the Soviet troops withstood the German siege and weakened the German army by launching a series of counterattacks. II. More Synonyms in Context 1) During the First World War, battles occurred here and there over vast areas. Some of the most dramatic fighting took place in the gloomy trenches of France and Belgium. 2) Elizabeth made careful preparations for the interview and her efforts / homework paid off. 3) I spent hours trying to talk him into accepting the settlement, but he turned a deaf ear to all my words.

高中数学必修4第一章复习总结及典型例题

必修四 第一章 复习 第一:任意角的三角函数 一:角的概念:角的定义,角的三要素,角的分类(正角、负角、零角和象限角),正确理解角,与角终边相同的角的集合}{|2,k k z ββπα=+∈ ,弧度制,弧度与角度的换算, 弧长l r α=、扇形面积2 1122 s lr r α==, 二:任意角的三角函数定义:任意角α的终边上任意取一点p 的坐标是(x ,y ),它与原点的距离是22r x y =+(r>0),那么角α的正弦r y a = sin 、余弦r x a =cos 、正切x y a = tan ,它们都是以角为自变量,以比值为函数值的函数。 三:同角三角函数的关系式与诱导公式: 1.平方关系:2 2sin cos 1 αα+= 2. 商数关系: sin tan cos α αα = 3.诱导公式——口诀:奇变偶不变,符号看象限。 正弦 余弦 正切 第二、三角函数图象和性质 基础知识:1、三角函数图像和性质

2、熟练求函数sin()y A x ω?=+的值域,最值,周期,单调区间,对称轴、对称中心等 ,会用五点法作sin()y A x ω?=+简图:五点分别为: 、 、 、 、 。 3、图象的基本变换:相位变换:sin sin()y x y x ?=?=+ 周期变换:sin()sin()y x y x ?ω?=+?=+ 振幅变换:sin()sin()y x y A x ω?ω?=+?=+ 4、求函数sin()y A x ω?=+的解析式:即求A 由最值确定,ω有周期确定,φ有特殊点确定。 基础练习: 1、tan(600)-= . sin 225?= 。 2、已知扇形AOB 的周长是6cm ,该圆心角是1弧度,则扇形的面积= cm 2. 3、设a <0,角α的终边经过点P (-3a ,4a ),那么sin α+2cos α的值等于

新标准大学英语综合教程4课后答案

Key to book4 un it1-4 Unit 1 Active readi ng (1) Look ing for a job after uni versity? First, get off the sofa Read ing and un dersta nding Dealing with unfamiliar words 3 Match the words in the box with their definitions. 1 to make progress by moving to the n ext stage in a series of acti ons or events (proceed) 2 the process of cha nging from one situati on, form or state to ano ther (tra nsiti on) 3 not feeli ng in volved with some one or someth ing in a close or emoti onal way (detached) 4 referri ng to somethi ng which will happe n soon (upco ming) 5 to be sitting still in a position that is not upright (slump) 6 to retur n to a previous state or way of behav ing (revert) 7 to say what happe ned (reco unt) 4 Complete the paragraph with the correct form of the words in Activity 3. It isn ' t easy to make the (tr)a nsiti on from a busy uni versity stude nt to an un employed young adult (2) slumped on a bar stool or half watch ing a min dless televisi on show, wondering if and how their career is going to (3) proceed . Many people who have experie need a long period of in activity like this, whe n (4) reco un ti ng how they felt at the

(完整版)高中数学必修4第一章知识点总结及典型例题,推荐文档

高中数学必修四 第一章 知识点归纳 第一:任意角的三角函数 一:角的概念:角的定义,角的三要素,角的分类(正角、负角、零角和象限角),正确理解角,与角终边 相同的角的集合 } {|2,k k z ββπα=+∈ , 弧度制,弧度与角度的换算, 弧长l r α=、扇形面积2112 2 s lr r α==, 二:任意角的三角函数定义:任意角α的终边上任意取一点p 的坐标是(x ,y ),它与原点的距离是22 r x y =+(r>0),那么角α的正弦r y a =sin 、余弦r x a =cos 、正切x y a =tan ,它们都是以角为自变量,以比值为函数值的函数。 三:同角三角函数的关系式与诱导公式: 1.平方关系: 22sin cos 1 αα+= 2. 商数关系: sin tan cos α αα = 3.诱导公式——口诀:奇变偶不变,符号看象限。 正弦 余弦 正切 第二、三角函数图象和性质 基础知识:1、三角函数图像和性质 1-1 y=sinx -3π2 -5π2 -7π2 7π2 5π2 3π2 π2 -π2 -4π-3π -2π4π 3π 2π π -π o y x 1-1y=cosx -3π2 -5π2 -7π 2 7π2 5π2 3π2 π2 -π2 -4π-3π -2π 4π 3π 2π π -π o y x

2、熟练求函数sin()y A x ω?=+的值域,最值,周期,单调区间,对称轴、对称中心等 ,会用五点法作 sin()y A x ω?=+简图:五点分别为: 、 、 、 、 。 3、图象的基本变换:相位变换:sin sin()y x y x ?=?=+

全新版大学英语综合教程4课后习题集答案解析

全新版大学英语综合教程4【第二版】习题答案 主编:李荫华 上海外语教育出版社 Unit 1 Part II Text A lexf Organization Parts Paragraphs Main Ideas Part One Paras 1-2 Introduction — Both Napoleon's and Hitler's military campaigns failed because of the severity of the Russian winter. Part Two Paras 3-11 Napoleon's military campaign against Russia Part Three Paras 12-20 Hitler's military campaign against the Soviet Union Part Four Para 21 Conclusion—the elements of nature must be rekoned with in any military campaign. 2. Sections Paragraphs Main Ideas Section One Paras 12-13 Hitler's blitzkrieg against Russia and Stalin's scorched earth policy Section Two Paras 14-18 the battles fought at Leningrad, Moscow and Stalingrad Section Three Paras 19-20 the Russian counter-offensive and the outcome of the war Vocabulary I. 1. 1) alliance 2) at the cost of 3) stroke 4) limp 5) minus 6) regions 7) declarations 8) siege 9) raw 10) bide his time 11) have taken their toll 12) in the case of 2. 1) is faced with 2) get bogged down 3) is pressing on / pressed on 4) drag on 5) get by 6) dine out

(完整版)高中数学必修一典型例题

1 数学必修一典型例题 一、集合常见考题: 1.设A={(x ,y)|y=-4x+6},B={(x ,y)| y=5x -3},则A ∩B= ( ) A.{1,2} B.{(1,2)} C.{x=1,y=2} D.(1,2) 2.设全集U={1,2,3,4,5},集合M={1,2,3},N={2,3,5},则()()N C M C U U I =( ) A.Φ B. {2,3} C. {4} D. {1,5} 3.如图,I 是全集,M ,S ,P 是I 的三个子集, 则阴影部分所表示的集合是 A .()M P S I I B .()M P S I U C .S I C P)(M ?? D .S I C P)(M ?? 4.{}{}|||1,||2|3,A x x a B x x A B ?=-<=->=I 且,则a 的取值范围 5.设集合{} 2|2530,M x x x =--=集合{}|1N x mx ==,若M N M =U ,则非零..实数m 的取值集合..为 . 6、(本小题满分10分)已知集合A={x| 5 32+-x x ≤0}, B={x|x 2 -3x+2<0}, U=R , 求(Ⅰ)A ∩B ;(Ⅱ)A ∪B ;(Ⅲ)(uA )∩B. 7、(本题满分12分) 已知集合() 3,12y A x y x ?-? ==??-?? ,()(){},115B x y a x y =++=,试问当a 取何实数时,A B =?I .

2 8.(本小题满分12分)已知集合2{|121},{|310}P x a x a Q x x x =+≤≤+=-≤. (1)若3a =,求()R C P Q I ;(2)若P Q ?,求实数a 的取值范围. 二、函数基本概念及性质常见考题 选择填空: 1、 已知1 |1|3)(2 ---=x x x x f ,则函数)(x f 的定义域为( ) . [0, 3] B. [0, 2)(2, 3] A ? C. (0, 2)(2, 3] D. (0, 2)(2, 3)?? 2、函数y=342-+-x x 的单调增区间是( ) A.[1,3] B.[2,3] C.[1,2] D.(,2]-∞ 3、下列函数中,是奇函数,又在定义域内为减函数的是( ) A. x y ?? ? ??=21 B. x y 1= C. y=-x 3 D. )(log 3x y -= 4. ()x f y =是R 上的偶函数,且()x f 在),0[+∞上是减函数,若()()2-≥f a f ,则a 的取值范围是( ) A .2-≤a B .2≥a C .22≥-≤a a 或 D .22≤≤-a 5、R 上的函数()f x 对任意实数,x y 满足()()()f x f y f x y +=+,且(2)4f =,则(0)(2)f f +-的值为( ) A 、-2 B 、4- C 、0 D 、4 6、3 1 1)(x a a x f x x ?-+=为 函数。(奇偶性) 7、设函数()2 1 2 f x x x =++ 的定义域是[],1n n +(n N ∈),那么()f x 的值域中共含有 个整数. 8、若函数2 34y x x =--的定义域为[]0,m ,值域为25,44?? - -???? ,则m 的取值集合为 . 9、若函数()2 121y x ax =-++在区间(),4-∞上递减,则a 的取值范围为 .

英语专业综合教程4课后翻译及句子解释

Unit1 1, There has been this long lull with nothing particular turning up! you are beginning to be anxious because there has been no progress of the war in such a long quiet period… 2,we must "...meet with Triumph and Disaster. And treat those two impostors just the same." We are sure to experience both Triumph and Disaster and we must treat them as the same thing taking different appearances because they are essentially interchangeable. 3,never give in, except to convictions of honor and good sense Never give in unless we are convinced that it is honorable and sensible for us to do so. 4,Britain, other nations thought, had drawn a sponge across her slate. Britain, in other nations’ eyes, was completely wiped out/conquered. 5,we have only to persevere to conquer. … we have no choice but to hold on until victory comes. Unit2 1, The phrase "personal space" has a quaint, seventies ring to it The phrase “personal space” sounds old-fashioned and reminds one of the seventies…2, T-shirt weather can make proximity more alluring (or much, much less). … I have suspected that maybe the cause (of the space invasion) is the season: summer may either make people want to be closer to each other or more likely, to keep a distance between each other. 3, The logistics of it vary according to geography people in different regions are given different size of personal space. 4, individuals routinely commandeer booths and sets of facing seats meant for foursomes. …individuals, as usual, occupy the booths and seats which are desi gned for four people. 5,In the same way that the breeze from a butterfly's wings in Japan may eventually produce a tidal wave in California, I have decided to expand the contracting boundaries of personal space. Because the initial invasion of personal space can cause a chain of reactions, which may bring about a catastrophic consequence, as the breeze from a butterfly’s wings in Japan, if it initiates a chain of waves, may eventually produce a tidal wave in California, I have decided to enlarge the shrinking personal space. Unit3 1,Given the relatively few restrictions governing access and usage, it is the communications modal equivalent of international waters As there are relatively few restrictions for reaching and using the Internet, communications via the Internet are comparable to traveling through the international waterways. 2,But much less widely reported has been the notion that the Internet may be responsible for furthering the fragmentation of society by alienating its individual users A lot of people talk about the “new information age”, but not so many people are acquainted with the idea that the Internet separates people form each other and fragments society further as a result

数学必修4综合测试题(含答案)59928

数学必修4综合测试题 一、选择题(本大题共12小题,每小题5分,共60分,在每小题给出的四个选项中,只有 一个是符合题目要求的) 1.下列命题中正确的是( C ) A .第一象限角必是锐角 B .终边相同的角相等 C .相等的角终边必相同 D .不相等的角其终边必不相同 2.将分针拨慢5分钟,则分钟转过的弧度数是 ( C ) A . 3 π B .- 3 π C . 6 π D .- 6 π 3.已知角α的终边过点()m m P 34, -,()0≠m ,则ααcos sin 2+的值是( B ) A .1或-1 B . 52或52- C .1或5 2- D .-1或52 4、若点(sin cos ,tan )P ααα-在第一象限,则在[0,2)π内α的取值范围是( B ) A.35( , )(, )244 ππ π πU B.5(,)(,)424ππππU C.353(,)(,)2442ππππU D.33(,)(,)244 ππππU 5. 若|2|=a ,2||=b 且(b a -)⊥a ,则a 与b 的夹角是 ( ) (A )6π (B )4π (C )3π (D )π125 6.已知函数B x A y ++=)sin(??的一部分图象如右图所示,如果 2 ||,0,0π ??< >>A ,则( ) A.4=A B.1=? C.6 π ?= D.4=B 7. 设集合{}x y y x A 2sin 2|)(==,,集合{}x y y x B ==|)(,,则( ) A .B A I 中有3个元素 B .B A I 中有1个元素 C .B A I 中有2个元素 D .B A Y R = 8.已知== -∈x x x 2tan ,5 4 cos ),0,2 (则π ( ) A .24 7 B .24 7- C .7 24 D .7 24-

相关文档
相关文档 最新文档