文档库 最新最全的文档下载
当前位置:文档库 › SQL-Server2012综合练习题1 - 参考答案

SQL-Server2012综合练习题1 - 参考答案

SQL-Server2012综合练习题1 - 参考答案
SQL-Server2012综合练习题1 - 参考答案

SQL Server数据库操作

1.创建数据库:

操作1.1:创建一个test数据库,其主数据文件逻辑名test_data,物理文件名test_data.mdf,初始大小10MB,最大尺寸为无限大,增长速度1MB;数据库日志文件逻辑名称为test_log,物理文件名为test_log.ldf,初始大小为1MB,最大尺寸为5MB,增长速度为10%。

2.创建表:

操作2.1:创建学生表:

参考答案:

USE test

GO

CREATE TABLE student

(

st_id nVarChar(9) primary key NOT NULL,

st_nm nVarChar(8) NOT NULL,

st_sex nVarChar(2) NULL,

st_birth datetime NULL,

st_score int NULL,

st_date datetime NULL,

st_ from nVarChar(20) NULL ,

st_dpid nVarChar(2) NULL ,

st_ mnt tinyint NULL

)

GO

操作2.2:创建课程信息表:

参考答案:

USE test

GO

CREATE TABLE couse

(

cs_id nVarChar(4) primary key NOT NULL,

cs_nm nVarChar(20) NOT NULL,

cs_tm int NULL ,

cs_sc int NULL

)

GO

操作2.3:创建选课表:

参考答案:

USE test

GO

CREATE TABLE slt_couse

(

cs_id nVarChar(4) NOT NULL,

st_id nVarChar(9) NOT NULL,

score int NULL ,

sltdate datetime NULL

)

GO

操作2.4:创建院系信息表:

参考答案:

USE test

GO

CREATE TABLE dept

(

dp_id nVarChar(2) NOT NULL,

dp_nm nVarChar(20) NOT NULL,

dp_drt nVarChar(8) NULL,

dp_tel nVarChar(12) NULL

)

GO

3.表中插入数据

操作3.1:向dept表插入一条记录,系号11,系名自动控制系,系主任为李其余,电话81234567 INSERT INTO deptVALUES('11', '自动控制系', '李其余','81234567') 操作3.2:向student表插入一条记录,学号070201001,姓名为王小五,性别为男,出生日期为1990年9月9日,系号为11,其余字段为NULL或默认值

INSERT INTO student(st_id, st_nm, st_sex, st_birth, st_dpid)

VALUES ('070201001', '王小五', '男', '1990.9.9', '11' )

操作3.3:向couse表插入一条记录,课程号1234,课程名为操作系统,其余字段为NULL或默认值INSERT INTO couse(cs_id, cs_nm)VALUES ('1234', '操作系统') 操作3.4:向slt_couse表插入一条记录,课程号1234,学名070201001,其余字段为NULL或默认值INSERT INTO slt_couse(cs_id, st_id)VALUES ('1234', '070201001')

4.修改表中数据

操作4.1:修改student表记录,将王小五的入学成绩改为88

UPDATE student SET st_score=88WHERE st_nm='王小五'

操作4.2:修改couse表记录,将所有记录的学分改为4,学时改为64

UPDATE couse SET cs_tm=64, cs_sc=4

操作4.3:修改slt_couse表记录,将课程号为1234,学名为070201001的记录的成绩改为77 UPDATE slt_couse SET score=77 WHERE cs_id='1234' AND st_id='070201001'

5.删除表中数据

操作5.1:删除slt_couse表记录,将课程号为1234,学名为070201001的记录删除

DELETE FROM slt_couse WHERE cs_id='1234' AND st_id='070201001' 操作5.2:删除couse表记录,将课程号为1234的记录删除

DELETE FROM couse WHERE cs_id='1234'

6.简单查询

(1)查询表中所有的列

操作6.1:查询所有系的信息

SELECT * FROM dept

(2)查询表中指定列的信息

操作6.2:查询所有的课程号与课程名称

SELECT cs_id, cs_nm FROM couse

(3)在查询列表中使用列表达式

操作6.3:在查询student表时使用列表达式:入学成绩+400

SELECT st_id,st_nm,st_score,st_score+400 AS new_score

FROM student

(4)重新命名查询结果

操作6.4:使用AS关键字为dept表中属性指定列名:系号、系名、系主任、联系电话SELECT dp_id AS 系号, dp_nm AS 系名,dp_drt AS 系主任, dp_tel AS联系电话

FROM dept

操作6.5:使用"="号为couse表中属性指定列名:课程号、课程名、学时(=cs_sc*16)、学分

SELECT课程号=cs_id, 课程名=cs_nm,学分=cs_sc, 学时=cs_sc*16

FROM couse

(5)增加说明列

操作6.6:查询dept表的系号、系名和系主任,向查询结果中插入说明列:系号、系名和系主任SELECT '系号:', dp_id, '系名:', dp_nm, '系主任:', dp_drt

FROM dept

(6)查询列表中使用系统函数

操作6.7:显示所有学生的学号、姓名、性别和入学年份

SELECT st_id, st_nm, st_sex,DATEPART(yy,st_birth) AS 入学年份

FROM student

操作6.8:显示所有学生学号、姓名、性别和班级(学号前6位)

SELECT st_id, st_nm, st_sex, LEFT(st_id, 6) AS 班级

FROM student

(7)消除查询结果中的重复项

操作6.9:显示所有学生班级

SELECT DISTINCT LEFT(st_id,6) AS 班级 FROM student

(8)取得查询结果的部分行集

操作6.10:显示前5条学生记录信息

SELECT TOP 5 * FROM student

操作6.11:显示前25%条学生记录信息

SELECT TOP 25 PERCENT * FROM student

7.条件查询

(1)使用关系表达式表示查询条件

操作7.1:查询dept表中系号为11的院系信息

SELECT * FROM dept WHERE dp_id ='11'

操作7.2:查询student表中11系的学生学号、姓名、性别和所在系编号

SELECT st_id, st_nm, st_sex,st_dpid FROM student

WHERE st_dpid = '11'

操作7.3:查询student表中2008年及以后入学的学生信息

SELECT * FROM student

WHERE DATEPART( yy, st_date )>= 2008

操作7.4:在查询student表080808班学生的学号、姓名、性别和入学成绩

SELECT st_id, st_nm, st_sex, st_score FROM student

WHERE Left(st_id,6)='080808'

(2)使用逻辑表达式表示查询条件

操作7.5:查询student表中非11系的学生信息

SELECT * FROM student WHERE NOT (st_dpid = '11')

操作7.6:查询选修了1002号课程且成绩在60以下的学生学号

SELECT st_id FROM slt_couse

WHERE (cs_id='1002') AND (score<60)

操作7.7:查询2007年入学的11系所有男生信息

SELECT * FROM student

WHERE DATEPART(yy,st_date)=2007AND st_dpid='11'AND st_sex='男'

操作7.8:查询11系和12系的学生信息

SELECT * FROM student

WHERE st_dpid='11' ORst_dpid='12'

操作7.9:查询11系和12系所有2007年入学的学生信息

SELECT * FROM student

WHERE (st_dpid='11' ORst_dpid='12') AND DATEPART(yy,st_date)=2007 (3)使用LIKE关键字进行模糊查询

操作7.10:查询所有“计算机”开头的课程信息

SELECT * FROM couse WHERE cs_nm LIKE '计算机%'

操作7.11:查询所有由三个字组成的“王”姓学生信息

SELECT * FROM student WHERE st_nm LIKE '王__'

操作7.12:查询所有课程名中包含“信息”的课程信息

SELECT * FROM couse WHERE cs_nm LIKE '%信息%'

操作7.13:查询学生姓名介于王姓到张姓的信息

SELECT * FROM student

WHERE st_nm LIKE '[王-张]%'

(4)使用Between…And关键字进行查询

操作7.14:查询在1989.7.1到1990.6.30之间出生的学生信息

SELECT st_id, st_nm, st_sex, st_birth FROM student

WHERE st_birth BETWEEN '1981.7.1' AND '1999.6.30'

操作7.15:查询选修了1001号课程且成绩在60到80之间的学生选课信息

SELECT * FROM slt_couse

WHERE cs_id='1001'AND (scoreBETWEEN 60AND 80)

(5)使用IN关键字进行查询

操作7.16:查询11系、12系、13系的学生信息

SELECT * FROM studentWHERE st_dpidIN('11','12','13') 操作7.17:查询所有张,王,李,赵姓的学生的学号、姓名、性别

SELECT st_id, st_nm, st_sex FROM student

WHERE Left(st_nm,1)IN('张','王','李','赵')

(6)使用[NOT] NULL关键字进行查询

操作7.18:查询所有生源为非空的学生信息

SELECT * FROM studentWHERE st_from IS NOT NULL

操作7.19:查询选修了1001号课程且成绩为空的学生选课信息

SELECT * FROM slt_couse

WHERE cs_id='1001'AND score IS NULL

8.查询排序与查询结果存储

操作8.1:查询课程信息,按课程名称降序排序

SELECT * FROM couse ORDER BY cs_nm DESC

操作8.2:查询选修了1001号课程成绩非空的学生学号和成绩,并按成绩降序排序SELECT st_id, score FROM slt_corse

WHERE cs_id='1001'AND score IS NOT NULL

ORDER BY score DESC

操作8.3:查询11系学生学号、姓名和年龄,按年龄升序排序

SELECT st_id,st_nm,DATEPART(yy,GETDATE( ))-DATEPART(yy,st_birth) AS age FROM student

ORDER BY ageASC

操作8.4:查询学生信息,按姓名升序排序,再按系号降序排序

SELECT * FROM student ORDER BY st_nm, st_dpid DESC

操作8.5:创建学生表副本student01,仅保留学生学号、姓名和性别

SELECT st_id, st_nm, st_sex INTO student01 FROM student 操作8.6:查询陕西籍学生,将结果保存在新表st_shanxi

SELECT * INTO st_shanxi

FROM student

WHERE st_from='陕西省'

操作8.7:查询选修了1001号课程学生的选课信息,按学号升序排序,将结果保存在新表slt1001 SELECT * INTO slt1001FROM slt_corse

WHERE cs_id='1001'ORDER BY st_id

9.查询统计与汇总

操作9.1:查询课程总数

SELECT COUNT( * ) FROM couse

操作9.2:查询选修1001号课程的学生人数

SELECT COUNT(st_id)

FROM slt_couse

Where cs_id = '1001'

操作9.3:查询被选修课程的数量

SELECT COUNT( DISTINCT cs_id )FROM slt_couse

操作9.4:查询选修070101班学生的平均入学成绩

SELECT AVG(st_score)

FROM student

WHERE LEFT(st_id,6)='070101'

操作9.5:查询070101001号学生选修课程的数量、总分以及平均分

SELECT COUNT(cs_id)AS课程数量,SUM(score) AS 总分,AVG(score) AS 平均分

FROM slt_couse

WHERE st_id='070101001'

操作9.6:查询选修1001号课程的学生人数、最高分、最低分和平均分

SELECT COUNT(*) AS 学生人数, MAX(score) AS 最高分,

MIN(score) AS 最低分, AVG (score) AS 平均分

FROM slt_couse

WHERE cs_id='1001'

操作9.7:求各个课程号和相应的选课人数

SELECT cs_id, COUNT(st_id)

FROM slt_couse GROUP BY cs_id

操作9.8:统计各班人数

SELECT LEFT(st_id,6) AS 班级, COUNT(st_id)AS 人数

FROM student

GROUP BY LEFT(st_id,6)

操作9.9:依次按班级、系号对学生进行分类统计人数、入学平均分

SELECT st_dpid AS 系号,LEFT(st_id,6) AS 班级,

COUNT(st_nm) AS 人数,AVG(st_score) AS 均分

FROM student

GROUP BY LEFT(st_id,6), st_dpid

操作9.10:查询选修了均分在75以上的课程号及均分

SELECT cs_id AS 课程编号,AVG(score)AS 均分

FROM slt_couse

GROUP BY cs_id HAVING AVG(score)>75

操作9.11:查询选修了2门以上课程的学生学号

SELECT st_id FROM slt_couse

GROUP BY st_id HAVING COUNT(*)>2

操作9.12:明细汇总年龄<20的学生,并汇总学生数量、平均年龄

SELECT st_nm,DATEPART(yy,GETDATE( ))-DATEPART(yy,st_birth) AS 年龄

FROM student

WHERE DATEPART(yy,GETDATE())-DATEPART(yy,st_birth)<20

COMPUTECOUNT(st_nm),AVG(DATEPART(yy,GETDATE())-DATEPART(yy,st_birth)) 操作9.13:按班级明细汇总成绩<85分的学生,汇总学生数、均分

SELECT st_nm, LEFT(st_id,6) AS 班级, st_score

FROM student

WHERE st_score<85

ORDER BY 班级

COMPUTE COUNT(st_nm), AVG(st_score) BY 班级

10.连接查询

操作10.1:用SQL Server形式连接查询学生学号、姓名、性别及其所选课程编号

SELECT a.st_id, st_nm, st_sex, cs_id

FROM student a, slt_couse b

WHERE a.st_id = b.st_id

ORDER BY a.st_id

操作10.2:用ANSI形式连接查询学生学号、姓名、性别及其所选课程编号

SELECT a.st_id, st_nm, st_sex, cs_id

FROM student a INNER JOIN slt_couse b

ON a.st_id = b.st_id

ORDER BY a.st_id

操作10.3:用SQL Server形式连接查询学生学号、姓名及其所选课程名称及成绩

SELECT a.st_id, st_nm, cs_nm, score

FROM student a, slt_couse b, couse c

WHERE a.st_id = b.st_id AND b.cs_id = c.cs_id

ORDER BY a.st_id

操作10.4:用ANSI形式连接查询学生学号、姓名及其所选课程名称及成绩

SELECT a.st_id, st_nm, cs_nm, score

FROM slt_cousea INNER JOIN student b ON a.st_id = b.st_id

INNER JOIN couse c ON a.cs_id = c.cs_id

ORDER BY b.st_id

操作10.5:查询选修了1002课程的学生学号、姓名及1001课程成绩

SELECT a.st_id, st_nm, score

FROM studenta,slt_couseb

WHERE a.st_id = b.st_id AND b.cs_id = '1002'

ORDER BY b.st_id

操作10.6:查询选修了“数据结构”课程的学生学号、姓名及课程成绩

SELECT a.st_id, st_nm, score

FROM student a, slt_couse b, couse c

WHERE a.st_id=b.st_id AND b.cs_id=c.cs_id AND c.cs_nm='数据结构' ORDER BY a.st_id

操作10.7:用左外连接查询没有选修任何课程的学生学号、姓名

SELECT a.st_id, st_nm, score

FROM student aLEFT OUTER JOIN slt_couseb ON a.st_id = b.st_id WHERE b.cs_id IS NULL

ORDER BY b.st_id

操作10.8:用右外连接查询选修各个课程的学生学号

SELECT b.cs_id, a.st_id

FROM slt_couse a Right OUTER JOIN couse b ON a.cs_id = b.cs_id ORDER BY b.cs_id

何兆熊大学英语综合教程2unit4答案

Text comprehension I. B II. 1. T; 2. F; 3. T; 4. T; 5. T. III. 1. “snail mail”. 2. “an essential stepping stone on the road to success”. 3. “the profound relationship between language and culture that lies at the heart of society”. 4. “the means to shape our views of the world”. 5. “to negotiate the boundaries between languages and to compromise in translation”. 6. “to use linguistic skills, to think differently, to enter into another culture’s mentality and to shape language accordingly”. IV. 1. with convenient ways to reach any part of the world. 2. It seems that everyone is able to always get in touch with anyone else if he or she can afford to. 3. is the most important to society. 4. a fundamental skill in today’s world, where different c ultures interact. 5. are finding ways to interrelate different cultures. Structural analysis of the text 1. The last sentence of the 3rd paragraph: “Most fundamental is the profound relationship between language and culture that lies at the heart of society and one that we overlook at our peril.” 2. Paragraph 4: The lack of an exact counterpart of the English word “homesickness” in other languages such as Italian, Portuguese, and German. Paragraph 5: The problem of untranslatability which the early Bible translators encountered. Paragraph 6: English and Welsh speakers make adjustments regarding the color spectrum in the grey / green / blue / brown range; The word “democracy” means completely different things in different contexts; the flat breads of Central Asia are a long way away from Mother’s Pride white sliced toasties, yet the word “bread” has to serve for both. Part One. Vocabulary Analysis I. Phrase practice 1. provided =as long as 假如,倘若 need never be out of touch =can never fail to be reached 从不会失去联系 2. regardless of =no matter 不管,不顾

大学英语综合教程1课后习题答案

Unit 1 Part Ⅱ Reading Task Vocabulary Ⅰ1. 1)respectable 2)agony 3)put down 4)sequence 5)hold back 6)distribute 7)off and on 8)vivid 9)associate 10)finally 11)turn in 12)tackle 2. 1)has been assigned to the newspaper’s Paris office. 2)was so extraordinary that I didn’t know whether to believe him or not. 3)a clear image of how she would look in twenty years’time. 4)gave the command the soldiers opened fire. 5)buying bikes we’ll keep turning them out. 3. 1)reputation; rigid; to inspire 2)and tedious; What’s more; out of date ideas 3)compose; career; avoid showing; hardly hold back Ⅱviolating Ⅲ;in upon Comprehensive Exercises ⅠCloze back; tedious; scanned; recall; vivid; off and on; turn out/in; career ; surprise; pulled; blowing; dressed; scene; extraordinary; image; turn; excitement ⅡTranslation As it was a formal dinner party, I wore formal dress, as Mother told me to. 2)His girlfriend advised him to get out of /get rid of his bad habits of smoking before it took hold. 3)Anticipating that the demand for electricity will be high during the next few months, they have decided to increase its production. 4)It is said that Bill has been fired for continually violating the company’s safety rules. /Bill is said to have been fired for continually violating the company’s safety rules. 5)It is reported that the government has taken proper measures to avoid the possibility of a severe water shortage. /The local government is reported to have taken proper measures to avoid the possibility of a severe water shortage. 2.Susan lost her legs because of/in a car accident. For a time, she didn’t know how to face up to the fact she would never (be able to) walk again. One day, while scanning (through) some magazines, a true story caught her eye/she was attracted by a true story. It gave a vivid description of how a disabled girl became a writer. Greatly inspired, Susan began to feel that she, too, would finally be able to lead a useful life. Unit 2 Part ⅡReading Task Vocabulary Ⅰ1. 1)absolutely 2)available 3)every now and then 4)are urging/urged 5)destination 6)mostly 7)hangs out 8)right away 9)reunion 10)or something 11)estimate 12)going ahead 2. 1)in the examination was still on his mind. 2)was completely choked up by the sight of his team losing in the final minutes of the game. 3)was so lost in study that she forgot to have dinner. 4)has come up and I am afraid I won’t be able to accomplish the project on time. 5)of equipping the new hospital was estimated at﹩2 million. 3. 1)were postponed; the awful; is estimated 2)reference; not available; am kind of 3)not much of a teacher; skips; go ahead Ⅱ;on Ⅲor less of/sort of 4. kind of/sort of 5. more or less 6. or something Comprehensive Exercises ⅠCloze up; awful; practically; neighborhood; correspondence; available; destination; reunion; Mostly; postponing; absolutely ; savings; embarrassment; phone; interrupted; touch; envelope; signed; message; needed ⅡHalf an hour had gone by, but the last bus hadn’t come yet. We had to walk home. 2)Mary looks as if she is very worried about the Chinese exam because she hasn’t learned the texts by

预算会计综合练习题及答案-(1)(1)

预算会计综合练习题 一、单项选择题: 1、B 2、以下等式中属于预算会计的恒等公式的是(B )。 A 利润=收入-费用 B 资产=负债+净资产 C 资产+支出=负债+净资产+收入 D 资产=负债+净资产+收入-支出 3、事业单位的“上级补助收入”属于(C )。 A 预算收入 B 预算外收入 C 非财政补助收入 D 财政收入 4、D 5、 B 6、资金调拨收入不包括( A )。 A 基金预算收入 B 补助收入 C 上解收入 D 调入资金 7、对于事业单位取得收入为实物时,应按( D )确认其价值。 A 评估价值 B 历史成本 C 暂估价值 D 有关凭证 8、关于预算结余科目,下列说法正确的是(C )。 A 年终结账时,从“一般预算收入”的借方转入 B年终结账时,从“上解收入”的借方余额转入 C年终结账时,从“调入资金”的贷方余额转入 D年终结账时,从“调入资金”的借方余额转入 9、按照现金管理制度的有关规定,下列支出不应使用现金支付的是(B )。 A 发放职工工资35000元 B 支付商品价款5000元 C 支付职工医药费800元 D 购买零星办公用品200元 10、以下说法不正确的是(D )。 A 总预算会计报表由表头、表体、表尾组成 B 各级总预算会计报表按旬、按月、按年编报 C 利用总预算会计报表可以分析研究一定时期总预算执行情况及其原因 D 总预算会计报表不能作为编制下期预算的参考 11、以下资产不属于无形资产内容的是(C )。 A 专利权 B 士地使用权 C 递延资产 D 商标权 12、政府与事业单位会计与预算管理体制相适应而分为( C )会计。 A 行政机关会计和科研部门会计 B 文化卫生单位会计与党派团体会计 C 总预算会计与单位会计 D 省级财政会计与市级财政会计 13、财政部门借给下级财政部门预算资金时,会计核算的科目是(B )。 A 暂付款 B 与下级往来 C 预拨经费 D 借出款项 14、在财政会计中与下级往来账户属于( C )类账户。 A 资产类账户 B 负债类账户 C 资产和负债双重性质 D 净资产类 15、财政会计报表中的月报,预算收入项目按国家预算收支科目要求应列报到( B )。 A 类 B 款 C 项 D 目 16、下列单位不属于事业单位范畴的是( D )。 A 气象局 B 林业科研所 C 出版社 D 福利企业 17、某市剧团收到上级单位通过银行拨来本月经费2500000元,则应填制( A )。 A 收款凭证 B 付款凭证 C 转账凭证 D 原始凭证 18、某学校发生清理报废固定资产人员的工资,应计入( A )账户。

最新(第二版)新标准大学英语综合教程Boo2Unit 4课后答案

Unit 4 Active Reading (1) 4 1 a 2b 3c 4c 5d 5 1 submerged 2 destiny 3 glared 4 wits 5 gazed 6 habitual 6 1 exclaimed 2 intricate 3 propositions 4 vicinity 5 hustle 6 sensible 7 1 turn up 2 come around/ will come around 3 call time on 4 pulled out 5 for show 8 1 This is probably part of the description of Bob issued by the Chicago police. It is a distinctive feature that can be used to identify him. 2 As diamonds are very expensive, having many of them suggests that the man is wealthy and has done well in life. 3 This indicates that the man is in fact not Jimmy. He is unlikely to have grown by two or three inches, as he was already 20 when they last met. 4 The man was submerged in his overcoat because he was trying to hide his face from Bob, and he wasn’t really Jimmy. The bad weather provided a good excuse, however. 5 Bob was feeling emotional. His old friend Jimmy had tricked him, and he was probably angry and shocked. Active Reading (2) 3 1 c 2 d 3a 4b 5c 4 1.precaution 2.fraud 3.trash 4.cancel 5.deceived 6.Household 5 1.log off https://www.wendangku.net/doc/a5284333.html,monplace 3.forge 4.anonymous 5.fictional 6 b, b, a, a, a, a, a

新世纪大学英语综合教程1课后答案(全)

2. (1) obtain (2) confident (3) communicate (4) advantage (5) relevant (6) helpful (7) extreme (8) enjoyable (9) means (10) process (11) particularly (12) characters (13) astonished (14) apparently 3. (1) fond of (2) is…related to (3) according to (4) To a certain degree (5) vice versa (6) no doubt (7) rid… of (8) cleare d up (9) or else (10) at all costs (11) sure enough (12) let alone (13) similar to (14) It’s no use (15) in my opinion (16) was worth (II)Increasing Your Word Power 1. (1) c (2) d (3) b (4) b (5) b (6) d 2. (1) highly/very (2) quite/very (3) quite/very/increasingly (4) quite/simply/very 3. 4.No Mistake especial→ especially

necessarily → necessary frequent → frequently No Mistake ea sily → easy No Mistake i ndividually → individual m uch → many h igh → highly a pparently → apparent r emarkably → remarkable p robable → probably No Mistake (III)Grammar Task 1: (1)would/should (2) should/would (3) might (4) would (5) must (6) can’t (7) should would (8) must Task 2: (1)We passed the afternoon very pleasantly, roller-skating in the sun and talking about our childhood under a tree. / The afternoon passed very pleasantly, while we roller-skated in the sun and talked about our childhood under a tree. (2)On entering the lecture hall, I was surprised at the size of the crowd. / When I entered the lecture hall, I was surprised at the size of the crowd. (3)When I was only a small boy, my father took me to Beijing and we had a lot of fun together. (4)To write well, a person must read good books. (IV)Cloze (1) doubt (2) efficient (3) where (4) advantage (5) afford (6) claim (7) fluently (8) qualified (9) extent (10) ridiculous (11) perfect (12) as (13) because (14) individual (V)Translation 1. Translate the sentences (1) The baby can’t even crawl yet, let alone walk. (2) Will claimed he was dining with a group of friends at the time of the murder, but in my opinion he told a lie. (3) To a certain extent the speed of reading is closely related to reading skills; and with reading skills you can cope with outside class reading better. (4) According to the regulation/rule, they both can play the game/participate in the game.

第一章 导论 综合练习题参考答案

一、名词解释题 1.经济学:是指关于选择的科学,是对稀缺性资源合理配置进行选择的科学。(参见教材P3) 2.微观经济学:是指研究个别经济单位的经济行为。(参见教材P4) 3.宏观经济学:是指从国民经济角度研究和分析市场经济整体经济活动的行为。(参见教材P4) 4.《国民财富的性质和原因的研究》:简称《国富论》,亚当?斯密著,1776年出版。批判了重商主义的错误观点,提出了劳动是国民财富的源泉,明确了劳动价值和利润来自于剩余劳动的观点;强调经济自由的思想,主张自由放任和充分发挥市场自由竟争的调节作用;强调国家不干预经济。《国富论》第一次创立了比较完备的古典政治经济学的理论体系,剩余价值理论的提出,为马克思劳动价值理论的形成奠定了基础,是经济学说史上的第一次革命。(参见教材P8) 5.《就业、利息和货币统论》:简称《通论》,凯恩斯著,1936年出版。在理论上批判了萨伊的“供给能自动创造需求”和资本主义不存在非自愿失业的错误观点,提出了供给是需求的函数和资本主义不可能充分就业的理论;在方法上开创了以总量指标为核心的宏观经济分析方法;在政策上反对自由放任,强调国家干预经济,并提出财政赤字政策、收入政策、货币政策等三项重要的经济政策。 《通论》创建了宏观经济学,并使凯恩斯经济学开始成为正统经济学,其干预经济的政策主张为资本主义各国所采用,被经济学界称为经济学说史上的第三次革命。(参见教材 P11) 6.规范分析:是指以一定的价值判断为基础,提出一些分析和处理问题的标准,作为决策和制定政策的依据。(参见教材P16) 7.实证分析:是指只对经济现象、经济行为或经济活动及其发展趋势进行客观分析,得出一些规律性的结论。(参见教材P16)

综合教程1课后答案

综合教程1课后答案 Unit 1 College Life Enhance Your Language Awareness Words in Action 1. (P.23) 1) deliver 2) polish 3) available 4) latter 5)file 6) thrive 7) undertook 8) practical 9) fulfill 10) perceived 11) accumulated 12) multiplied 2. (P.24) 1)compromise 2) self-induced 3) steered 4) frame 5)demonstrated 6) employ 7) promote 8) impressed 9)contribution 10) deliberately 11) financial 12) economic 3.(P.24) 1)makes a point of 2) refresh my memory 3) lead to 4) at hand 5) working out 6) under pressure 7) Last but not least 8) down 9) In addition to 10) were involved 11) in other words 12) pointed out 13) pay off 4. (P.25) 1) scored 2) scheduled 3) assigned 4) motivated 5) crucial 6) promote 7) perform 8) debate 9) scanned 10) devised 11) advocated 12) clarify 13) priorities 14) compromised 15) context 16) undertook Final sentence: academic excellence Increasing Your Word Power 1.( P.26~27) 1)principal/ major 2) top 3) major 4) top 5)principal 6) major 7) schedule 8)advocate/have advocated 9) top 10) approach 11)blame 12) major/ principal 13) advocate 14) schedule 15)blame 16) approaching 17) pressure 18) pace 19)pressured 20) pace Cloze (P.31) 1)academic 2) priorities 3) conducted 4) principles 5)begin 6) priority 7) compromised 8) addition 9)filling 10) Speaking 11) formula 12)Participation/ Participating 13) based 14) least 15)way 16) pressure

新世纪综合教程2第二版Unit4答案

Keys for Unit 3 Vocabulary I. 1. as long as, can never fail to be reached 2. no mater 3. fail to notice at great risk 4. may be described by these words to varying degrees 5. were directly confronted with the problem that something in one language cannot be rendered into another II. 1. stepping stone 2. at their peril 3. serve 4. mentality 5. staple 6. facilitating 7. messaging 8. hybrid III. 1. economy 2. accessible 3. fundamentally 4. homesick 5. negotiable 6. adjusted 7. remoteness 8. complacently

IV. D, C, A, D, B, A, B, C V. 1. time, era, epoch 2. meetings 3. basic,fundamental 4. misshape 5. unavoidably 6. worry, concern, anxiety, apprehension 7. therefore, so, thus 8. hide, conceal VI. 1. unbelievable 2. imperfect 3. disagreement 4. misplace 5. malfunction 6. enable 7. surpass 8. submarine Grammar I. 1. helps 2. hope, are enjoying, sunbathe, go, are going 3. is being

高中数学选修1-1综合测试题及答案(1)

选修1-1模拟测试题 一、选择题 1. 若p 、q 是两个简单命题,“p 或q ”的否定是真命题,则必有( ) 真q 真 假q 假 真q 假 假q 真 2.“2α=- 23 ”是“απ2 15π∈Z ”的( ) A.必要不充分条件 B.充分不必要条件 C.充分必要条件 D.既不充 分又不必要条件 3. 设x x x f cos sin )(+=,那么( ) A .x x x f sin cos )(-=' B .x x x f sin cos )(+=' C . x x x f sin cos )(+-='D .x x x f sin cos )(--=' 4.曲线f(x)3-2在点P 0处的切线平行于直线4x -1,则点P 0的坐标为( ) A.(1,0) B.(2,8) C.(1,0)和(-1,-4) D.(2,8)和(-1,- 4) 5.平面内有一长度为2的线段和一动点P,若满足6,则的取值范围是 A.[1,4] B.[1,6] C.[2,6] D.[2,4] 6.已知20是双曲线x 2-λy 2=1的一条渐近线,则双曲线的离心率为( ) A. 2 B.3 C.5 D.2 7.抛物线y 2=2的准线与对称轴相交于点为过抛物线的焦点F 且垂直于对称轴的弦, 则∠的大小是( ) A.3 π B.2 π C.3 π2 D.与p 的大小有关

8.已知命题p: “-2|≥2”,命题“∈Z ”,如果“p 且q ”与“非q ”同时为假命题,则满足条件的x 为( ) A.{≥3或x ≤-1?} B.{-1≤x ≤3?} C.{-1,0,1,2,3} D.{1,2,3} 9.函数f(x)3-2在区间(1∞)内是增函数,则实数a 的取值范围是( B ) A.[3∞] B.[-3∞] C.(-3∞) D.(-∞,-3) 10.若△中A 为动点、C 为定点(-2 a ,0)(2 a ,0),且满足条件-2 1,则动点A 的轨迹方程是( ) A.2 216a x -2 2316a y =1(y ≠0) 2216a y 2 2 316a y =1(x ≠0) C. 2216a x -2 2316a y =1的左支(y ≠0) D. 2 216a x -2 2316a y =1的右支(y ≠0) 11.设a>0(x)2,曲线(x)在点P(x 0(x 0))处切线的倾斜角的取值范围为[0,4 π],则P 到曲线(x)对称轴距离的取值范围为( ) A.[0,a 1] B.[0, a 21 ] C.[0a b 2] D.[0a b 21-] 12.已知双曲线2 2 a x -2 2 b y =1(a>0>0)的左、右焦点分别为F 1、F 2,点P 在双曲 线的右支上,且142|,则此双曲线的离心率e 的最大值为( ) A.3 5 B.3 4 C.2 D.3 7 二、填空题 13. 对命题p :7,70x x R x ?∈+>,则p ?是. 14.函数f(x) x -1的单调减区间为. 15.抛物线y 24 1关于直线x -0对称的抛物线的焦点坐标是. 16.椭圆 252x 9 2 y 1上有3个不同的点A(x 11)、B(4,4 9)、C(x 33),它们与点F(4,0)

全新版大学英语综合教程1课后练习答案

Unit 1 Growing Up Part II Language Focus Vocabulary Ⅰ. 1. 1.respectable 2.agony 3.put…down 4.sequence 5.hold back 6.distribute 7.off and on 8.vivid 9.associate 10.f inally 11.t urn in 12.t ackle 2. 1.has been assigned to the newspaper’s Paris office. 2.was so extraordinary that I didn’t know whether to believe him or not. 3. a clear image of how she would look in twenty years’ time.

4.gave the command the soldiers opened fire. 5.buying bikes we’ll keep turning them out. 3. 1.reputation, rigid, to inspire 2.and tedious, What’s more, out of date ideas https://www.wendangku.net/doc/a5284333.html,pose, career, avoid showing, hardly hold back Ⅱ. https://www.wendangku.net/doc/a5284333.html,posed 2.severe 3.agony 4.extraordinary 5.recall https://www.wendangku.net/doc/a5284333.html,mand 7.was violating 8.anticipate Ⅲ. 1.at 2.for 3.of 4.with 5.as 6.about

新世纪大学英语 综合教程2-Unit4习题答案

Unit Four Checking Your Vocabulary Word Detective 1. (page 113) 1) b 2) f 3) a 4) g 5) h 6) c 7) j 8) d 2. (page 114) 1) transform 2) evidence 3) outcome 4) ignore 5) display 6) nonsense 7) concerning 8) tense 3. (page 115) 1) admit into 2) conside r yourself as 3) unworthy of 4) To my horror 5) in her mind’s eye 6) (in) one way or another 7) are / feel disposed of 8) give it a try Enhance Your Language Awareness Words in Action 1. (page 118) 1) positive 2) focused 3) perspective 4) tense 5) shape 6) address 7) crises 8) curse 9) incredible 10) conversely 11) issue 12) ignored 13) outcome 14) rare 15) transform 16) accomplish 17) quit 18) rejected 2. (page 119) 1) (in) one way or another 2) have lived through 3) makes a difference 4) Give it a / another try 5) concerned with 6) slipped over 7) pulled over 8) in reverse Increasing Your Word Power 1. (page 120) 1) concerned 2) Concerning 3) reject 4) declined 5) unconscious 6) subconscious 7) former 8) preceding 9) raise 10) rise 2. (page 121) 1) does 2) make 3) take 4) do 5) make 6) Take 7) done 8) taken 9) making 10) took 3. (page 121) 1) d 2) a 3) f 4) b 5) c 6) e Nouns / Adjectives Suffixes Verbs Chinese meanings visual -ize / -ise visualize 使形象化;使显现 modern modernize 使现代化 popular popularize 普及化;通俗化 industrial industrialize (使)工业化 apology apologize 道歉 human humanize 赋予人性,使人性化 system systemize 使系统化 CLOZE (page 123) 1) perspective 2) despair 3) necessity 4) perform 5) Conversely 6) prophecy 7) where 8) as 9) achieve 10) recognize 11) dealt with 12) attitude 13) channels 14) concerned TRANSLATION (page 124) 1. Only those who have lived through a similar experience can fully appreciate this. Or: The only people who can fully appreciate this are those who have lived through a similar experience. 2. Scientists have been hard pressed to figure out how these particles form / are formed and interact (with one another). 3. I’d like to express my special thanks to everyone who has contributed over the years in one way or another. 4. The individual success of the employees in a team environment results in success for the company.

大学英语综合教程1答案

大学英语综合教程一 Unit 1 Growing Up Part II Language Focus Vocabulary Ⅰ. 1.respectable 2.agony 3.put…down 4.sequence 5.hold back 6.distribute 7.off and on 8.vivid 9.associate 10.finally 11.turn in 12.tackle 2. 1.has been assigned to the newspaper’s Paris office. 2.was so extraordinary that I didn’t know whether to believe him or not.

3.a clear image of how she would look in twenty years’ time. 4.gave the command the soldiers opened fire. 5.buying bikes we’ll keep turning them out. 3. 1.reputation, rigid, to inspire 2.and tedious, What’s more, out of date ideas https://www.wendangku.net/doc/a5284333.html,pose, career, avoid showing, hardly hold back Ⅱ. https://www.wendangku.net/doc/a5284333.html,posed 2.severe 3.agony 4.extraordinary 5.recall https://www.wendangku.net/doc/a5284333.html,mand 7.was violating 8.anticipate Ⅲ. 1.at 2.for 3.of 4.with

初中化学酸碱盐综合练习题(一)及答案

酸碱盐综合训练题(一)及答案山西省怀仁四中吴兴文 一.选择题 1.某盐在人体的新陈代谢中十分重要,它可维持血液 中适当的酸碱度,并通过人体复杂的作用产生消化液,帮助消化.该盐是() A.氯化钙 B.氯化钠 C.硝酸钾 D.碳酸钠 2.下列一些化学常识与我们的生活息息相关,其中叙 述错误的是() A.成年人在正常情况下每天要摄入食盐5g左右 B.医用生理盐水是0.5%的氯化钠溶液 C.当空气中的二气化碳的体积分数达到1%时,对人体就有害 D.通常的食醋中约有3%-5%的醋酸 3.(2009,佛山)下列物质能共存于同一溶液中,且无色透明的是()A.NaOH、NaNO3、K2SO4 B.CuSO4、MgSO4、KCl C.Ba(OH)2、H2SO4、NaCl D.NaCl、AgNO3、HNO3 4.我国化学家侯德榜改进了一种化工产品的工业生产 技术,其产品获得美国费城万国博览会金奖,这种生产技术用于() A、生产烧碱 B、生产纯碱 C、精制精盐 D、生产尿素 5.(2007,烟台)下列推论正确的是() A、碳酸盐与盐酸反应放出气体,所以与盐酸反应放 出气体的物质一定是碳酸盐 B、酸与碱反应生成盐和水,所以生成盐和水的反应 一定是酸与碱的反应 C、燃烧都伴随着发光、发热,所以有发光、放热现 象的就是燃烧 D、碱性溶液能使石蕊溶液变蓝,所以能使石蕊溶液 变蓝的溶液呈碱性 6.(2009,四川)下列离子能在pH=12的水溶液中大量共存的是() A.SO42-、NO3-、K+、H+ B.Na+、Cl-、OH-、Al3+ C.Cl-、NO3-、K+、Na+ D.Ag+、Cl-、CO32-、K+ 7.(2008,山东)下列各组物质能按照关系图 (→表示反应一步完成)相互转化的是() A B C D X NaOH Ca(OH)2Fe2O3Cu Y NaNO3CaCl2Fe CuO Z Na2SO4CaCO3FeCl2Cu(OH)2 8.(2008,乐山)图中,四圆甲、乙、丙、丁分别表示一种溶液,两圆的相交部分为两溶液混合后出现的主要实验现象,下表中符合图示关系的是() 甲乙丙丁 A Na2CO3 H2SO4 Ba(OH)2 石蕊 B Na2CO3 HCl Ca(OH)2 CuSO4 C Na2SO4 HCl Ba(OH)2 石蕊 D HCl Na2CO3 Ca(OH)2 酚酞 9.(2010,桂林)下列化肥能与碱性物质混放或混用的是() A.碳铵 B.硝铵 C.硫铵 D.硫酸钾 10.(2008,咸宁)已知某固体粉末是由NaCl、Ba(NO3)2、CuSO4、Na2SO4、Na2CO3中的一种或几种组成,取这种粉末加足量的水,振荡后呈浑浊,再加稀盐酸,沉淀不溶解,过滤后得无色滤液,取滤液并滴加AgNO3溶液,产生白色沉淀,对原固体粉末的判断正确的是() A.可能含CuSO4和Na2CO3 B.一定含NaCl,可能含Ba(NO3)2、Na2SO4,一定不含 Na2CO3、CuSO4 C.一定含有NaCl、Ba(NO3)2、Na2SO4,一定不含Na2CO3, 可能含CuSO4 D.可能含NaCl,一定含Ba(NO3)2、Na2SO4,一定不含 Na2CO3、CuSO4 11.(2009,锦州)将稀硫酸、澄清的石灰水、碳酸钠溶液、氧化铁、锌粒五种物质两两混合,发生的反应共有() A.7个 B.6个 C.5个 D.4个12.(2010,镇江)下列各组溶液,不加其他试剂就能鉴别的是(双选)() A.NaOH NaCl MgCl2 FeCl3 B.Na2CO3稀H2SO4稀HCl NaNO3 X Y Z 1

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