开放英语3参考答案

阅读下面一段短文,然后回答下列 36~38 小题。

第 36 题 概括本片段的大意。作者的观点是什么?


正确答案:
作者以自己和古今中外哲学家、文学家对时间和人生的深刻体验,引出论题。作者的观点:时间是极为宝贵的,在人短暂的人生中应如何去支配自己的时间。


阅读下面短文。回答 26~25 题。

第 26 题 下列关于“托迈”的说法,正确的一项是:


正确答案:D
原文写的是“它很可能是所有原始人类的祖先”,再结合“这个结果一经发布便引起了古人类学界的争议”,故A项错误;原文为“近乎完整”,而非“完整”,故B项错误;原文“生命的希望”,不是指地球原始生命,故C项错误。


二、阅读下面短文,从短文后各题所给四个选项(A、B、C、D)中选出能填入相应空白处的最佳选项。共3题,每题1分,共3分。 阅读下面短文,回答从的 114~116 题目。Martin Luther King Jr.was born in Georgia in 1 929.When was still a boy Martin learned that his people,the black Americans,when often treated differently from most of( )fellow Americans.Many could not attend good schools,get good jobs,or live in nice houses because of the color of their ( ) .Manin knew that in a free country this was wrong.He wanted to help his black brothers,( )he decided to go to school and become a minister.

第114题:( )

A.his

B.those

C.most

D.their


正确答案:D


片断阅读理解三、片断阅读理解:共5 题。要求你阅读以下片断短文,并根据短文的内容回答问题。

第56题:有一对夫妻,他们有一个儿子。一天,来了一个陌生人,他说他认识这对夫妻,还说他认识这对夫妻的儿子。 最能准确地复述这段话的意思的是

A、 新来的人认识这对夫妻和他们的儿子 B、 新来的陌生人认识这对夫妻和他们的儿子 C、 新来的陌生人认识这对夫妻和他的儿子 D、 新来的陌生人自称认识这对夫妻和他们的儿子


正确答案:D


除了各式屋顶外,中国传统物业的其他典型元素还有:1.()、2.()、3.()、4.()、5.()、6.()、7.()、8.()、9.()、10.()、11.()、12.()13.()、14.()、15.()、16.()、17.()、18.()、19.()、20.()、21.()。


正确答案:马头墙;须弥座;立帖;梁架;斗栱;雀替;挂落;额枋;藻井;漏窗;飞檐;华表;牌楼;牌坊;照壁;月洞门;墙檐;石狮;貔貅;翁仲;赑屃


英语3考试题参考答案一、 交际用语(每小题2分,共10分)阅读下面的小对话,从A、B、C、D四个选项中选出一个能填入空白处的最佳选项,并在答题纸上写出所选的字母符号。1. D 2. B 3. D 4. D 5. B二、 词汇与结构(每小题2分,共30分)阅读下面的句子,从A、B、C、D四个选项中选出一个能填入空白处的最佳选项,并在答题纸上写出所选的字母符号。6. B 7. C 8. D 9. A 10. B 11. A 12. D 13. B 14. D 15. B 16. C 17. B 18. A 19. B 20. A 三、阅读理解(每小题4分,共40分)(一)阅读下列短文,从A、B、C、D四个选项中选出一个正确答案,并在答题纸上写出所选的字母符号。Passage 121. D 22. C 23. B 24. D 25. A(二)阅读下列短文,并根据短文内容判断其后的句子是否正确(T)、错误(F),还是文字中没有涉及相关信息(NG)。Passage 2 26. F 27. F 28. T 29. T 30. NG)四、书面表达(20分)Directions: For this part, you are allowed thirty minutes to write a passage to state your views on the topic: My ideal job. You should write at least 80 words and base your writing on the Chinese outline below:1. 你理想的工作是什么2. 你的理由3. 如何实现你的理想 评分原则 1)本题总分为20分,按5个档次给分。(1-4分;5-8分;9-12分;13-16分;17-20分) 2)评分时,先根据文章的内容和语言初步确定其所属档次,然后以该档次的要求来衡量、确定或调整档次,最后给分 3)字数少于40或多于70的(不包括所给句子和标点符号)从总分中减去1分 4)评分时应注意的主要内容为: 内容要点、句型变化、运用词汇和语法结构的准确性。 5)评分时,如拼写错误较多,书写较差,以至影响交际,将分数降低一个档次。

11. public enum Title {  12. MR(”Mr.”), MRS(”Mrs.”), MS(”Ms.”);  13. private final String title;  14. private Title(String t) { title = t; }  15. public String format(String last, String first) {  16. return title + “ “ + first + “ “ + last;  17. }  18. }  19. public static void main(String[] args) {  20. System.out.println(Title.MR.format(”Doe”, “John”));  21. }  What is the result?() 

  • A、 Mr. John Doe
  • B、 An exception is thrown at runtime.
  • C、 Compilation fails because of an error in line 12.
  • D、 Compilation fails because of an error in line 15.
  • E、 Compilation fails because of an error in line 20.

正确答案:A


11. public void testIfA() {  12. if(testIfB(”True”)) {  13. System.out.println(”True”);  14. } else {  15. System.out.println(”Not true”);  16. }  17. }  18. public Boolean testIfB(String str) {  19. return Boolean.valueOf(str);  20. }  What is the result when method testIfA is invoked?() 

  • A、 True
  • B、 Not true
  • C、 An exception is thrown at runtime.
  • D、 Compilation fails because of an error at line 12.
  • E、 Compilation fails because of an error at line 19.

正确答案:A


11. static class A {  12. void process() throws Exception { throw new Exception(); }  13. }  14. static class B extends A {  15. void process() { System.out.println(”B”); }  16. }  17. public static void main(String[] args) {  18. new B().process();  19. }  What is the result?() 

  • A、 B
  • B、 The code runs with no output.
  • C、 Compilation fails because of an error in line 12.
  • D、 Compilation fails because of an error in line 15.
  • E、 Compilation fails because of an error in line 18.

正确答案:A


1. public class Test { 2. public static String output =””; 3.  4. public static void foo(int i) { 5. try { 6. if(i==1) { 7. throw new Exception(); 8. } 9. output += “1”; 10. } 11. catch(Exception e) { 12. output += “2”; 13. return; 14. } 15. finally { 16. output += “3”;17. } 18. output += “4”; 19. } 20.  21. public static void main(String args[]) { 22. foo(0); 23. foo(1); 24.  25. }26. } What is the value of the variable output at line 23?()


正确答案:13423


11. public class Test {  12. public void foo() {  13. assert false;  14. assert false;  15. }  16. public void bar(){  17. while(true){  18. assert false;  19. }  20. assert false;  21. }  22. }  What causes compilation to fail?()  

  • A、 Line 13
  • B、 Line 14
  • C、 Line 18
  • D、 Line 20

正确答案:D

更多 “开放英语3参考答案” 相关考题
考题 10. public class Hello {  11. String title;  12. int value;  13. public Hello() {  14. title += “ World”;  15. }  16. public Hello(int value) {  17. this.value = value;  18. title = “Hello”;  19. Hello();  20. }  21. }  and:  30. Hello c = new Hello(5);  31. System.out.println(c.title);  What is the result?() A、 HelloB、 Hello WorldC、 Compilation fails.D、 Hello World 5E、 The code runs with no output.F、 An exception is thrown at runtime.正确答案:C

考题 多选题10. public class MyClass {  11.  12. public Integer startingI;  13. public void methodA() {  14. Integer i = new Integer(25);  15. startingI = i;  16. methodB(i);  17. }  18. private void methodB(Integer i2) {  19. i2 = i2.intValue();  20.  21. }  22. }  If methodA is invoked, which two are true at line 20?()Ai2 == startingI returns true.Bi2 == startingI returns false.Ci2.equals(startingI) returns true.Di2.equals(startingI) returns false.正确答案:A,B解析:暂无解析

考题 1. class A implements runable (   2. int i;   3. public void run () (   4. try (   5. thread.sleep(5000);   6. i= 10;   7. ) catch(InterruptedException e) {}   8. )   9. )   10.   11. public class Test {   12. public static void main (string args) (   13. try (   14. A a = new A ();   15. Thread t = new Thread (a);  16. t.start();  17.   18. int j= a.i;   19.   20. ) catch (Exception e) {}   21. )   22. )   Which statement al line 17 will ensure that j=10 at line 19?()A、 a.wait();B、 t.wait();C、 t.join();D、 t.yield();E、 t.notify();F、 a.notify();G、 t.interrupt();正确答案:C

考题 11. class Payload {  12. private int weight;  13. public Payload(int wt) { weight = wt; }  13. public void setWeight(mt w) { weight = w; }  15. public String toString { return Integer.toString(weight); }  16. }  17.  18. public class TestPayload {  19. static void changePayload(Payload p) { 20. /* insert code here */ 21. }  22.  23. public static void main(String[] args) {  24. Payload p = new Payload();  25. p.setWeight(1024);  26. changePayload(p);  27. System.out.println(”The value of p is “+ p);  28. }  29. }  Which statement, placed at line 20, causes the code to print “The value of p is 420.”?() A、 p.setWeight(420);B、 p.changePayload(420);C、 p = new Payload(420);D、 Payload.setWeight(420);E、 p = Payload.setWeight(420);F、 p = new Payload(); p.setWeight(420);正确答案:A

考题 10. interface Foo {}  11. class Alpha implements Foo {}  12. class Beta extends Alpha {}  13. class Delta extends Beta {  14. public static void main( String[] args) {  15. Beta x = new Beta();  16. // insert code here  17. }  18. }  Which code, inserted at line 16, will cause a java.lang.ClassCastException?() A、 Alpha a = x;B、 Foo f= (Delta)x;C、 Foo f= (Alpha)x;D、 Beta b = (Beta)(Alpha)x;正确答案:B

考题 11. class Person {  12. String name = “No name‟;  13. public Person(String nm) { name = nm; }  14. }  15.  16. class Employee extends Person {  17. String emplD = “0000”;  18. public Employee(String id) { empID = id; }  19. }  20.  21. public class EmployeeTest {  22. public static void main(String[] args) {  23. Employee e = new Employee(”4321”);  24. System.out.println(e.empID);  25. }  26. }  What is the result?() A、 4321B、 0000C、 An exception is thrown at runtime.D、 Compilation fails because of an error in line 18.正确答案:D

考题 Given:   11. static class A {   12. void process() throws Exception { throw new Exception(); }   13. }   14. static class B extends A {   15. void process() { System.out.println("B "); }   16. }   17. public static void main(String[] args) {   18. A a = new B();   19. a.process();   20. }   What is the result? ()A、 Compilation fails because of an error in line 19.B、 An exception is thrown at runtime.C、 BD、 Compilation fails because of an error in line 18.E、 Compilation fails because of an error in line 15. F、 The code runs with no output.正确答案:A

考题 单选题11. class Snoochy {  12. Boochybooch;  13. public Snoochy() { booch = new Boochy(this); }  14. }  15.  16. class Boochy {  17. Snoochy snooch;  18. public Boochy(Snoochy s) { snooch = s; }  19. }  And the statements:  21. public static void main(String[] args) {  22. Snoochy snoog = new Snoochy();  23. snoog = null;  24. // more code here  25. }  Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line 23 executes?()ANone of these objects are eligible for garbage collection.BOnly the object referenced by booch is eligible for garbage collection.COnly the object referenced by snoog is eligible for garbage collection.DOnly the object referenced by snooch is eligible for garbage collection.EThe objects referenced by snooch and booch are eligible for garbage collection.正确答案:B解析:暂无解析

考题 11. class Snoochy {  12. Boochybooch;  13. public Snoochy() { booch = new Boochy(this); }  14. }  15.  16. class Boochy {  17. Snoochy snooch;  18. public Boochy(Snoochy s) { snooch = s; }  19. }  And the statements:  21. public static void main(String[] args) {  22. Snoochy snoog = new Snoochy();  23. snoog = null;  24. // more code here  25. }  Which statement is true about the objects referenced by snoog, snooch, and booch immediately after line 23 executes?() A、 None of these objects are eligible for garbage collection.B、 Only the object referenced by booch is eligible for garbage collection.C、 Only the object referenced by snoog is eligible for garbage collection.D、 Only the object referenced by snooch is eligible for garbage collection.E、 The objects referenced by snooch and booch are eligible for garbage collection.正确答案:E

考题 单选题11. public class Test {  12. public void foo() {  13. assert false;  14. assert false;  15. }  16. public void bar(){  17. while(true){  18. assert false;  19. }  20. assert false;  21. }  22. }  What causes compilation to fail?()ALine 13BLine 14CLine 18DLine 20正确答案:D解析:暂无解析