复习一下刚才学习过的资料,看看能不能找出文中下列单词和短语的近义词。
1. introduction:________
2. Staff:_______
3. duty:________
4. determine:_______
5. job hunter:________
6. working environment:________
7. plenty of:________
8. seek for:________
A、12378456
B、73124568
C、37124586
D、73124586
A、经济因素
B、环境认识
C、历史过程
泛读教程1答案 篇一:泛读教程1答案 Unit1-16 Unit 1 University Student Life Section A Word Pretest 1. D 2. B 3. B 4. C 5. D 6. D 7. A 8. B Reading Comprehension l. F 2. T 3. F 4. T 5. F 6. F 7. T 8. F Vocabulary Building Word Match rationally in a way based on reason rather than emotions established accepted; recognized various different panic sudden fear consolidate strengthen assignment homework biological of living things flexible not fixed strenuous stressful; requiring effort and energy master overall recreation way of spending free time estimate calculate roughly routine regular; usual priority first concern relaxation rest 1. flexible 2. established 3. panic 4. strenuous 5. priority 6. routine 7. Rationally 8. recreations Suffix 1. familiarize 2. visualize 3. merely 4. idealize 5. finalize 6. necessarily 7. physically 8. highly Cloze favorable their respected professors authority role expect need several changes Sec tion B 1. D 2. C 3. C 4. B 5. C 6. B 7. D 8. D Section C l. D 2. A 3. B 4. D 5. C 6. B 7. C 8. A Unit 2 Culture Shock Section A Word Pretest 1. C 2. A 3. D 4. C 5. C 6. B 7. A 8. D Reading Comprehension 1. C 2. D 3. D 4. D 5. D 6. C Vocabulary Building Word Match exaggerate say more than the truth about something slang nonstandard vocabulary adapt make or become suitable insecure weak; uncertain; unprotected distinct different; separate challenging difficult, but in an interesting way range vary within limits adjust change slightly in order to make suitable aggressive ready for conflict cope with deal with occur happen identity the distinguishing character or personality of an individual automatic self-acting; under its own power distortion twist; changing shape reverse opposite; contrary l. slang 2. exaggerate 3. cope with 4. reverse 5. adapt / adjust 6. range / ranged 7. occurred 8. aggressive Suffix l. dividable / divisible 2. determination 3. dependable 4. satisfaction 5. correction 6. relation 7. usable / useable 8. recognizable Cloze foreign anxious behavior mean necessarily appear unsure approach frustrations system Section B l. C 2. B 3. D 4. C 5. C 6. D 7. B 8. D Section C l. C 2. B 3. B 4. D 5. B 6. C 7. A 8. D Unit 3 Movie Section A Word Pretest l. B 2. D 3. B 4. C 5. D 6. B 7. A 8. D Reading Comprehension l. C 2. D 3. B 4. C 5. D 6. B 7. C 8. A Vocabulary Building 篇二:英语泛读教程1答案 英语泛读教程1答案 Answer keys for reference: Unit 1: Education Policy I. Warm-up: The American Education System 2. Skimming and scanning (1) B. (2)C. (3)grade point average; Scholastic Aptitude Test; Graduate Record Examination (4)Associates; Bachelors; Masters; Doctorate 3. Reading comprehension i. Read for main idea (1) A. (2) kindergarten-5/6; 6-8, 7-9; 9/10-12 (3) 11 ii、. Understanding the language A. Vocabulary 3. B 4. C 5. B 6. A 7. B 8. B B. Phrases and sentences (1) Different colleges and universities have different admission policies. (2) If a student hasnt completed a minimum number of credit hours, he cannot graduate from a degree program. iii. Reading for facts (1) D.E. (2) C. (3) D. (4) B. (5) A. 4. Interpr
用六书分析下列汉字的结构。 1.豕 2.字 3.荆 4.刃 5.牧 6.闽 7.车 8.豫 9.本 10.集
1.象形:象猪形。
2.会意:从从子。
3.形声:从刑声。
4.指事:刀上加一点指示此处是刃口。
5.会意:从攴从牛。
6.形声:从虫门声。
7.象形:象车形。
8.形声:从象予声。
9.指事:木下加一短横,指示此处为根部。
10.会意:从雥(省)从木。
略
指出下列汉字属于“六书”中的哪种类型。 1.自 2.北 3.眉 4.上 5.莫 6.吠 7.雲 8.三 9.其 10.霜
1.象形
2.会意
3.象形
4.指事
5.会意
6.会意
7.形声
8.指事
9.象形
10.形声
略
指出下列汉字属于“六书”中的哪种类型。 1.自 2.北 3.眉 4.上 5.莫 6.吠 7.雲 8.三 9.其 10.霜
1. public class Employee { 2. String name; 3. double baseSalary; 4. Employee(String name, double baseSalary) { 5. this.name = name; 6. this.baseSalary = baseSalary; 7. } 8. } And: 1. public class Salesperson extends Employee { 2. double commission; 3. public Salesperson(String name, double baseSalary, 4. double commission) { 5. // insert code here 6. } 7. } Which code, inserted at line 7, completes the Salesperson constructor?()
1. public interface A { 2. public void doSomething(String thing); 3. } 1. public class AImpl implements A { 2. public void doSomething(String msg) { } 3. } 1. public class B { 2. public A doit() { 3. // more code here 4. } 5. 6. public String execute() { 7. // more code here 8. } 9. } 1. public class C extends B { 2. public AImpl doit() { 3. // more code here 4. } 5. 6. public Object execute() { 7. // more code here 8. } 9. } Which statement is true about the classes and interfaces in the exhibit?()