搜档网
当前位置:搜档网 › 16秋北邮大学英语3阶段作业

16秋北邮大学英语3阶段作业

16秋北邮大学英语3阶段作业
16秋北邮大学英语3阶段作业

16秋北邮大学英语3阶段作业

一、单项选择题(共9道小题,共90.0分)

1.下面关于 Java 的理解错误的是()。

A.Java 是一个面向对象、平台独立、多线

程、动态的编程环境

B.Java 是一个完整的计算平台,包括完整

的程序开发环境和运行环境

C.Java 是一个通用的编程环境,使用它可

以开发完成各种计算任务的通用程序

D.Java 是一个 Web 程序开发和运行环

境,使用它只能开发 Web 应用程序

知识

点:

阶段作业一

学生答案: [D;]

标准

答案:

D

得分: [10] 试题

分值:

10.0

2.(错误)

下面不是包的用途的是( A )

A.规定一组类的对外界面

B.防止命名冲突

C.访问控制

D.方便类的查找和使用

知识

点:

阶段作业一

学生答案: [D;]

标准

答案:

A

得分: [0] 试题

分值:

10.0

3.在Java中,用Package语句说明一个包时,该包的层次结构必须是()

A.与文件的结构相同

B.与文件目录的层次相同

C.与文件类型相同

D.与文件大小相同

知识

点:

阶段作业一

学生答案: [B;]

标准

答案:

B

得分: [10] 试题

分值:

10.0

4.关于Eclipse透视图说法错误的是()

A.每个透视图都定义了工作台中各个视图

的初始设置和布局

B.一个工作台窗口包含多个独立的透视

图,但同一时刻只有一个透视图是对用

户可见的

C.每个透视图都有自己的视图和编辑器,

用户可以在各个透视图间切换

D.透视图的布局是可以改变的,但改变多

次后无法再恢复到初始设置

知识

点:

阶段作业一

学生答案: [D;]

标准

答案:

D

得分: [10] 试题

分值:

10.0

5.(错误)

关于Eclipse工作空间说法错误的是( C )

A.它是用户计算机磁盘上划出的一块区

域,用来存放用户的工作资料

B.它以项目为单位组织文件和目录

C.它将各种资源组织成树形结构,文件夹

位于树的根部,项目位于树枝位置

D.用户对工作空间的每次操作都能在

Eclipse集成环境中得到同步

知识

点:

阶段作业一

学生答案: [B;]

标准

答案:

C

得分: [0] 试题

分值:

10.0

6.在Eclipse中开发JAVA程序的步骤不包括()

A.创建一个Java项目

B.手动创建Java源程序

C.手工运行JDK命令

D.运行Java程序

知识

点:

阶段作业一

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

7.下面叙述中哪个是正确的()

A.当编译Java程序时,源程序中的每个类

都将被分别编译成不同的文件,每个文

件名都与所对应的类名相同,并以扩展

名class结束

B.当编译Java程序时,源程序中的每个类

都将被分别编译成不同的文件,每个文

件名都与所对应的类名相同,并以扩展

名javax结束

C.当编译Java程序时,源程序中的所有类

都将被编译到同一个文件中,文件名与主类的类名相同,并以扩展名class结束D.当编译Java程序时,源程序中的所有类

都将被编译到同一个文件中,文件名与主类的类名相同,并以扩展名javax结

知识

点:

阶段作业一

学生答案: [A;]

标准

答案:

A

得分: [10] 试题

分值:

10.0

8.下面关于Java 的理解错误的是()

A.Java 是一个面向对象、平台独立、多线

程、动态的编程环境

B.Java 是一个完整的计算平台,包括完整

的程序开发环境和运行环境

C.Java 是一个通用的编程环境,使用它可

以开发完成各种计算任务的通用程序

D.Java 是一个Web 程序开发和运行环

境,使用它只能开发Web 应用程序

知识

点:

阶段作业一

学生答案: [D;]

标准

答案:

D

得分: [10] 试题

分值:

10.0

9.冯·诺依曼计算机中指令和数据均以二进制形式存放在存储器中,CPU区分它们的依据是()

A.指令操作码的译码结果

B.指令和数据的寻址方式

C.指令周期的不同阶段

D.指令和数据所在的存储单元

知识

点:

阶段作业一

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

一、单项选择题(共10道小题,共100.0分)

1.下面关于“回调”的说法错误的是()

A.“回调”是一种程序设计模式,而不是

Java的专门语法规则

B.通过回调,对象被赋予一些信息,这些

信息允许它在稍后的某个时刻返回头去调用初始对象

C.Java通过指针实现回调

D.Java通过接口实现回调

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

2.设有如下程序

public class Try2 {

public static void main(String[] args) { Circle c = new Circle(2);

System.out.println(c.getArea());

}

}

interface IShape {

double PI = 3.14;

double getArea();

}

class Circle implements IShape { private double radius;

Circle(double radius) {

this.radius = radius;

}

public double getArea() {

return (PI * radius * radius); }

}

则下面说法正确的是()

A.编译时发生错误

B.运行时发生错误

C.输出为12.56

D.输出为0

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

3.设有如下程序

public class Try2 {

public static void main(String[] args) {

B objb = (B) new A();

objb.show();

}

}

class A {void show() {System.out.println("a");}}

class B extends A { void show() { System.out.println("b");}} 则下面说法正确的是()

A.编译时发生错误

B.运行时发生错误

C.输出为a

D.输出为b

知识

点:

阶段作业二

学生答案: [B;]

标准

答案:

B

得分: [10] 试题

分值:

10.0

4.有如下代码段

class COuter {

int x = 10;

void showA() {

System.out.println(x);

}

void print() {

(new CInner()).showB();

}

class CInner {

int x = 20;

void showB() {

System.out.println(x);

}

}

}

public class Try2 {

public static void main(String[] args) { COuter o = new COuter();

o.print();

}

}

则下面说法正确的是()

A.编译时发生错误

B.运行时发生错误

C.输出为20

D.输出为10

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

5.设有如下程序段

class Test{

private int m;

public static void fun(){

//some code…

}

}

要使成员变量m 被函数fun()直接访问,则下面选项正确的是()

A.将private int m改成protected int m

B.将private int m改成public int m

C.将private int m改成static int m

D.将private int m改成int m

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

6.(错误)

设有如下声明

String s = "story";

则下面语句哪个是合法的?(A)

A.s += "books";

B.char c = s[1];

C.int len = s.length;

D.String t = s.subString(1,4);

知识

点:

阶段作业二

学生答案: [D;]

标准

答案:

A

得分: [0] 试题

分值:

10.0

7.Java 提供了很多系统程序包,编译程序时会自动导入到源程序中的系统包是()

A.java.appplet

B.java.io

https://www.sodocs.net/doc/019559639.html,ng

D.java.security

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

8.下面关于Java程序的类的叙述错误的是()

A.类是描述同种对象具有的结构和功能的

程序模块

B.Java 用类来定义对象能够持有的数据

和方法的执行效果

C.类就是对象,对象就是类

D.类是一种数据类型

知识

点:

阶段作业二

学生答案: [C;]

标准

答案:

C

得分: [10] 试题

分值:

10.0

9.(错误)

设有如下接口定义

interface IShape {

double Pi = 3.14;

void getArea();

}

则下面说法错误的是()

A.在程序的任何一个地方都可以调用

getArea(C)

B.getArea()是抽象方法

C.getArea()是静态方法

D.getArea()不带有返回值

知识阶段作业二

点:

学生答案: [D;]

标准

答案:

C

得分: [0] 试题

分值:

10.0

10.设有如下程序

public class Try2 {

public static void main(String[] args) {

A obja = new B();

obja.show();

}

}

class A {void show() {System.out.println("a");}}

class B extends A { void show() { System.out.println("b");}} 则下面说法正确的是()

A.编译时发生错误

B.运行时发生错误

C.输出为a

D.输出为b

知识

点:

阶段作业二

学生答案: [D;]

标准

答案:

D

得分: [10] 试题

分值:

10.0

一、单项选择题(共10道小题,共100.0分)

1.(错误)

设有如下程序

public class Try2 {

public static void main(String[] args) { Circle c = new Circle(2);

System.out.println(c.getArea());

}

}

interface IShape {

double PI = 3.14;

double getArea();

}

class Circle implements IShape {

private double radius;

Circle(double radius) {

this.radius = radius;

}

double getArea() {

return (PI * radius * radius);

}

}

则下面说法正确的是( A )

A.编译时发生错误

B.运行时发生错误

C.输出为12.56

D.输出为0

知识

点:

阶段作业二

学生

答案:

[C;]

得分: [0] 试题

分值:

10.0

2.下面哪个不能直接导致一个线程停止执行?()

A.调用 yield() 方法

B.在一个对象上调用 wait() 方法

C.在一个对象上调用 notify () 方法

D.在一个对象上调用 Interrupt() 方法

知识

点:

阶段作业三

学生

答案:

[C;]

得分: [10] 试题

分值:

10.0

3.(错误)

请看下面未完成的代码

public class Foo implements Runnable {

public void run (Thread t) {

System.out.println("Running.");

}

public static void main (String[] args) {

new Thread(new Foo()).start();

}

}

结果是?(C)

A.运行时抛出一个异常

B.程序能够运行,但是没有任何输出

C.没有实现 Runnable 接口中的方法导致编译错误

D.程序运行后输出“Running”

知识

点:

阶段作业三

学生

答案:

[D;]

得分: [0] 试题

分值:

10.0

4.下面能够得到文件“file.txt”的父路径的是()

A.String name= File.getParentName(“file.txt”);

B.String name= (new File(“file.txt”)).getParent();

C.String name = (new File(“file.txt”)).getParentName();

D.String name= (new File(“file.txt”)).getParentFile();

知识

点:

阶段作业三

学生

答案:

[B;]

得分: [10] 试题

分值:

10.0

5.下面哪个基于Unicode字符的输入流?()

A.Reader

B.Writer

C.InputStream

D.OutputStream

知识

点:

阶段作业三

学生

答案:

[A;]

得分: [10] 试题

分值:

10.0

6.关于 Java 流的叙述错误的是()

A.流是 Java 语言处理 I/O 的方式

B.从概念上讲,流就是一系列的字节序列或字符序列

C.引入流的概念的目的是使得在处理不同的数据输入输出时编程更

加方便

D.流是Java惟一的非面向对象的语言构成

知识

点:

阶段作业三

学生

答案:

[D;]

得分: [10] 试题

分值:

10.0

7.请看下面的代码

public void test( ) {

try { oneMethod( );

System .out .println(“condition 1”);

} catch (ArrayIndexOutOfBoundsException e) {

System .out .println(“condition 2”);

} catch (Exception e) {

System .out .println(“condition 3”);

} finally {

System .out .println(“condition 4”);

}

}

如果oneMethod抛出NullPointerException,则程序输出结果为是()

A.condition 1

B.condition 2

C.condition 3

D.condition 3

condition 4

知识

点:

阶段作业三

学生

答案:

[D;]

得分: [10] 试题

分值:

10.0

8.设有如下程序

public class Try2 {

public static void main(String[] args) { Try2 obj = new Try2();

obj.test();

}

void oneMethod() {

int a [] = {1, 2, 3};

System.out.println(a[0]);

}

public void test() {

try {

oneMethod( );

System.out.println("condition 1");

}

catch (ArrayIndexOutOfBoundsException e) { System.out.println("condition 2");

}

catch (Exception e) {

System.out.println("condition 3");

}

finally {

System.out.println("finally");

}

}

}

则程序的输出结果的是()

A.1

condition 1

finally

B.condition 2

finally

C.condition 3

finally

D.3

北邮大学英语3阶段作业一

一、阅读理解(共1道小题,共50.0分) 1. Americans with small families own a small car or a large one. If both parents are working, they usually have two cars. When the family is large, one of the cars is sold and they will buy a van(住房汽车) A small car can hold four persons and a large car can hold six persons but it is very crowded. A van hold seven persons easily, so a family with three children could ask their grandparents to go on a holiday travel. They could all travel together. Mr. Hagen and his wife had a third child last year. This made them sell a second car and buy a van. The sixth and seventh seat are used to put other things, for a family of five must carry many suitcases when they travel. Americans call vans motor homes. A motor home is always used for holidays. When a family are traveling to the mountains or to the seaside, they can live in their motor home for a few days or weeks. All the members of a big family can enjoy a happier life when they are traveling together. That is why motor homes have become very popular. In America there are many parks for motor homes. 1. From the passage, a motor home is also called ______. A. a motor car B. a motorbike C. a big truck D. a van 2. A family owns a motor home usually with ______. A. more than two children B. interest in vans C. a baby D. much money 3. Americans with a small family and with two parents working usually have ______. A. a car B. two cars C. two vans D. a van 4. What is the main use of motor homes for Americans? A. to do some shopping with all the family members B. to drive their children to school every day C. to travel with all the family members for holidays

2012年下半年大学英语三第二次作业

大学英语(三)(19000003) > 课程作业> 复查测验:2012年下半年大学英语三第二次作业 复查测验:2012年下半年大学英语三第二次作业 用户2012秋入学专升本 已提交12-10-17 下午11:22 名称2012年下半年大学英语三第二次作业 状态已完成 分数得94 分,满分100 分 说明 问题1得3 分,满分3 分 一、交际英语(每题3分,共30分) 1、- Good-bye for now. - _________ 所选答案: C. See you. 问题2得3 分,满分3 分 2、- How do I get to the cinema? - _________ 所选答案: D. Go down this street and turn left. 问题3得3 分,满分3 分 3、— Hi, Tom, how's everything with you? — , and how are you? 所选答案: B. Hm, not too bad. 问题4得3 分,满分3 分 4、- Wow! This is a marvelous room! I've never known you're so artistic.

- ______ 所选答案: C. Thanks for your compliments. 问题5得3 分,满分3 分 5、–How was your trip to London, Jane? – _____________________ 所选答案: A. Oh, wonderful indeed. 问题6得3 分,满分3 分 6、–Oh, sorry to bother you. –__________________. 所选答案: A. That’s Okay. 问题7得3 分,满分3 分 7、--Excuse me, could you tell me how to get to the post office? -- _____________. 所选答案: D. Sorry, but I am a stranger here myself 问题8得3 分,满分3 分 8、- Could you help me with my physics, please? - ________ 所选答案: D. Sorry I can't. I have to go to a meeting right now. 问题9得3 分,满分3 分 9、-- Congratulations! You won the first prize in today's speech contest. -- ________ 所选答案: C. Thank you. 问题10得3 分,满分3 分 10、- Do you mind my smoking here? - _______

大学英语3阶段作业二

一、完形填空(共1道小题,共50.0分) 1.Once, three fishes lived in a pond. One evening, some ___1___ passed by the pond and saw the fishes. “This pond is full of fish”, they told each other __2___. “We have never fished here before. We must come back tomorrow morning with our ___3___ and catch these fish!” So saying, the fishermen left. When the eldest of the three fishes ___4___ this, he was troubled. He called the other fishes together and said, “Did you hear ___5___ the fishermen said? We must leave this pond at once. The fishermen will return tomorrow and kill us all!” The second of the three fishes agreed. “You are right”, he said. “We must leave the pond.” But the ____6___ fish laughed. “You are worrying without reason”, he said. “We have lived in this pond all our lives, and no fisherman has ever come here. Why should these men return? I am not going ___7____ - my luck will keep me safe.” The eldest of the fishes left the pond that ___8____ evening with his entire family. The second fish saw the fishermen ____9___ in the distance early next morning and left the pond at once with all his family. The third fish refused to leave even then. The fishermen ____10___and caught all the fish left in the pond. The third fish's luck did not help him - he too was caught and killed. (232字) a. A.fishersman B.fisherman C.fishermans D.fishermen 学生答案: D; 标准答 案: D b. A.excitedly B.excited C.excite D.exciting

大学英语(3)第二次作业题及答案.doc

第2次作业 一、阅读理解(本大题共100分,共5小题,每小题20分) 1. Prehistoric men and women enjoyed a more varied diet than people do now, since they ate species of plant and several hundreds thousands types of living things. But only a tiny percentage of these were ever domesticated. Modern shops have hastened a trend towards specialization which began in the earliest days of agriculture. The food of the rich countries has become cheaper relative to wages. It is speedily distributed in supermarkets. But the choice annually becomes less and less great. Even individual foods themselves become more standardized. We live in the world of carrot specially blunted in order to avoid making a hole in the bag, and the tomato grown to meet a demand for a standard weight of weighting tomatoes to a kilo. Siri von Reis asks: "Only the three major cereals (谷物类食物)and perhaps ten other widely cultivated species stand between famine and survival for the world" s human population and a handful of drug plants has served Western civilization for several thousand years. A rather obvious question arises: Are we missing something?” After all, there are 800 000 species of plant on earth. (1). Tn prehistoric times people. A.ate much more than we do today B.lived mainly on plant food C.had a wide-ranging diet D.were more fussy about what they ate (2). Most of us have come to expect A. no variation in our diet B. a reduction in food supplies C. a specialist diet D. food conforming to a set standard (3). The specialization of food was started by

《大学英语3》第2阶段在线作业

《大学英语3》第2阶段在线作业试卷要求: 答题要求: 每题只有一个正确的选项。 1(5.0分) _______ these honors he received a sum of money. ?A) Except ? ?B) But ? ?C) Besides ? ?D) Outside ?

解析: 无 2(5.0分) It’s time we _______ the lecture because everybody has arrive d. ?A) will start ? ?B) shall start ? ?C) start ? ?D) started ? 3(5.0分) His salary as a driver is much higher than ______.

a porter ? ?B) is a porter ? ?C) that of a porter ? ?D) as a porter ? 4(5.0分) _______ her and then try to copy what she does. ?A) Mind ? ?B) See ? ?C) Stare at

?D) Watch ? 5(5.0分) The girl is ______ of a film star. ?A) somebody ? ?B) something ? ?C) anybody ? ?D) anyone ?

6(5.0分) The atmosphere ______ certain gases mixed together in definit e proportions. ?A) composes of ? ?B) is made up ? ?C) consists of ? ?D) makes up of ? 7(5.0分)

16秋北邮大学英语3阶段作业

16秋北邮大学英语3阶段作业

一、单项选择题(共9道小题,共90.0分) 1.下面关于 Java 的理解错误的是()。 A.Java 是一个面向对象、平台独立、多线 程、动态的编程环境 B.Java 是一个完整的计算平台,包括完整 的程序开发环境和运行环境 C.Java 是一个通用的编程环境,使用它可 以开发完成各种计算任务的通用程序 D.Java 是一个 Web 程序开发和运行环 境,使用它只能开发 Web 应用程序 知识 点: 阶段作业一 学生答案: [D;] 标准 答案: D 得分: [10] 试题 分值: 10.0 2.(错误) 下面不是包的用途的是( A ) A.规定一组类的对外界面 B.防止命名冲突 C.访问控制

D.方便类的查找和使用 知识 点: 阶段作业一 学生答案: [D;] 标准 答案: A 得分: [0] 试题 分值: 10.0 3.在Java中,用Package语句说明一个包时,该包的层次结构必须是() A.与文件的结构相同 B.与文件目录的层次相同 C.与文件类型相同 D.与文件大小相同 知识 点: 阶段作业一 学生答案: [B;] 标准 答案: B 得分: [10] 试题 分值: 10.0 4.关于Eclipse透视图说法错误的是() A.每个透视图都定义了工作台中各个视图 的初始设置和布局 B.一个工作台窗口包含多个独立的透视 图,但同一时刻只有一个透视图是对用 户可见的 C.每个透视图都有自己的视图和编辑器,

用户可以在各个透视图间切换 D.透视图的布局是可以改变的,但改变多 次后无法再恢复到初始设置 知识 点: 阶段作业一 学生答案: [D;] 标准 答案: D 得分: [10] 试题 分值: 10.0 5.(错误) 关于Eclipse工作空间说法错误的是( C ) A.它是用户计算机磁盘上划出的一块区 域,用来存放用户的工作资料 B.它以项目为单位组织文件和目录 C.它将各种资源组织成树形结构,文件夹 位于树的根部,项目位于树枝位置 D.用户对工作空间的每次操作都能在 Eclipse集成环境中得到同步 知识 点: 阶段作业一 学生答案: [B;] 标准 答案: C 得分: [0] 试题 分值: 10.0

北邮大学英语3(新)阶段作业一及答案

北邮大学英语3(新)阶段作业一及答案 一、单项选择题(共10道小题,共100.0分) 1.The doctors________the medicines to the people in the flood area. A.distinguished B.chose C.annoyed D.distributed 2.We took out another________to expand our business. A.lend B.lent C.loan D.load 3.He couldn't________his father that John was telling the truth. A.convince

B.believe C.admit D.display 4.Facing the________situation the sales manager looked________. A.puzzling,puzzled B.puzzling,puzzling C.puzzled,puzzled D.puzzled,puzzling 5.Professor Zhang had two articles published in the_________periodical. A.studying B.learning C.learned D.studied

6.The University________him an honorary degree. A.drained B.awarded C.approached D.glimpsed 7.If you're late again you'll be________from your job. A.referred B.deserted C.omitted D.dismissed 8.They are________as the most promising table-tennis players. A.regarded

2019年春季学期课程作业大学英语lxh第二次作业

正在加载试题,请稍候... 2019年春季学期课程作业大学英语(3)第2次 大学英语(3) 题号一二三四五合计 已做/题量0 / 15 0 / 3 0 / 3 0 / 5 0 / 1 0 / 27 得分/分值0 / 30 0 / 15 0 / 15 0 / 25 0 / 15 0 / 100 一、单项选择题(共15 题、0 / 30 分) 1、 ( We have a high regard for Prof. Joseph because he always____ his principles. A、lives on B、lives up to C、 lives down D、lives with : 2、 After months of voyage, Columbus arrived in ____ later proved a new continent. A、where B、which C、what , D、that 3、 Even if his letter____ tomorrow, it____ too late to do anything. A、 will arrive...is B、 should arrive...were ;

arrives...will be D、 arrives...would be 4、The trouble ()the car is that it has to be repaired every few days. A、A to { B、B for C、C in D、D with 5、 If you want to gain people’s res pect, be sure to _____ your promises. | A、live through B、live up to C、live with D、live on 6、–Hello, I’m David Chen. Nice to meet you. -- ( ) 、 A、Are you B、Nice to meet you too. C、Yes. D、Very nice. 7、 As the saying goes, all work and no play makes Jack a dull boy. So we should ____ work and play.、

北邮大学英语3阶段作业三

一、句子改错(共5道小题,共25.0分) 1. This is such a beautiful day that everyone around us feel like going out for a walk. A B C D A. A B. B C. C D. D 2. Neither John and his father was able to wake up early enough to catch the morning train. A B C D A. A B. B C. C D. D

3. He finds it easier to do the cooking himself than teaching his wife to cook. A B C D A. A B. B C. C D. D 4. Despite his old age, he is still very healthful and often works in the field. A B C D A. A B. B C. C D. D

5. The information which she was injured in the accident was given by Liz. A B C D A. A B. B C. C D. D 二、阅读理解(共1道小题,共50.0分)

1. Today, as in every other day of the year, more than 3,000 U.S. adolescents will smoke their first cigarette on their way to becoming regular smokers as adults. During their lifetime, it can be expected that of these 3,000 about 23 will be murdered, 30 will die in traffic accidents, and nearly 750 will be killed by a smoking-related disease. The number of deaths attributed to cigarette smoking outweighs all other factors, whether voluntary or involuntary, as a cause of death. Since the late 1970s, when daily smoking among high school seniors reached 30 percent, smoking rates among youth have declined. While the decline is impressive, several important issues must be raised. First, in the past several years, smoking rates among youth have declined very little. Second, in the late 1970s, smoking among male high school seniors exceeded that among female by nearly 10 percent. The statistic is reversing. Third, several recent studies have indicate high school dropouts have excessively high smoking rates, as much as 75 percent . Finally, though significant declines in adolescent smoking have occurred in the past decade, no definite reasons for the decline exist. Within this context, the National Cancer Institute (NCI) began its current effort to determine the most effective measures to reduce smoking levels among youth. 1. According to the author, the deaths among youth are mainly caused by _____. A. traffic accidents B. smoking-related diseases C. murder D. all of these 2. Every day there are over _____young people who will become regular smoker. A. 75 B. 23 C. 30 D. 3,000 3. By "dropout" (in paragraph 3) the author means______. A. students who failed the examination

川大2017秋冬季《大学英语(三)》第二次作业答案的

川大2017秋冬季《大学英语(三)》第二次作业答案 一、单项选择题。本大题共35个小题,每小题2.5 分,共87.5分。在每小题给出的选项中,只有一项是符合题目要求的。 1. —Can you go to the concert with us this evening? —________________ A.No, I already have plans. B.I’d love to, but I’m busy tonight.√ C.No, I really don’t like being with you. D.I’m ill, so I shouldn’t go out. 2. —Would you like to go skating with me? —________________. A.Yes, I think so B.No, thanks C.Yes, I'd love to√ D.I'm afraid not 3. —What about going for a walk? —________________. A.It’s good for you B.That’s all right C.So, do I D.Why not? A good idea√ 4. —Hello, may I have an appointment with the headmaster? —________________. A.Sorry, I don't know you B.No, you can't C.Certainly. Wait a minute, please√ D.Let me see 5. —May I use your bike for a moment? —________________. A.It’s well. B.It doesn’t matter. C.By all means.√ D.I have no idea. 6. —It’s rather cold in here. Do you mind if I close the window?

2019年春季大学英语3期末复习题

《大学英语3》课程2019年春季期末考试复习资料 一、复习资料的相关说明 1、《大学英语3》课程的考核方式 闭卷 2、成绩评定 总评成绩=30%阶段作业成绩(网上)+70%期末考试成绩二、期末考试必考题(占期末考试成绩60%) 提示:期末考试试题及选项顺序会随机。 一、词汇 1.You’ll never _____A____ anything if you spend your time that way! A. amount to B. accommodate with C. amount for D. accuse of 2. The lady was expecting a baby in a____D______ of months. A. pair B. few C. bunch D. couple 3. ___C__ on the top of hill, we find that the village seems very small. A.Saw B. Seen C. Seeing D. See 4. Many young girls like to _____C_____ for recording their private thoughts and feelings. A. keep a promise B. keep a secret C. keep a diary D. take notes 5. The police ____D_____ the driver with drunken driving. A. concluded B. outraged C. tracked D. charged 6. If you think you can do the job, don’t hesitate, just ____B______. A. go away B. go ahead C. go over D. go off 7. Not only I but also Tom and Mary__C_____fond of watching television. A. am B. was C. are D. is 8. The statement about the mad cow disease constituted a direct ____A_____ to the British government. A. challenge B. permission C. instruction D. sympathy 9. By the end of next month, you__C___ here for three years. A. will study B. study C. will have studied D. have studied 10. Our train is ____D______ in Beijing at 9 a.m. A. late B. sure C. early D. due

2019春大学英语三第二次在线作业

2019春大学英语三第二次在线作业单选题 (共40道题) 1.( 2.5分)– Is it going to rain? -- _________. ?A、Thank you. ?B、I like the rain. ?C、I love sunshine. ?D、I think so. 我的答案:D 此题得分:2.5分 2.(2.5分)– what does the weather forecast say? --___________. ?A、It says I’m fine. ?B、It says it is going to snow. ?C、It says the traffic will turn better. ?D、It says OK. 我的答案:B 此题得分:2.5分 3.(2.5分)– Excuse me, are you free tomorrow evening? --___________. ?A、You’re welcome. ?B、I’m glad to see you. ?C、It doesn’t m atter. ?D、I think so. 我的答案:D 此题得分:2.5分 4.(2.5分)– Do you enjoy your food? --___________. ?A、Thank you. ?B、I’d like a cup of tea. ?C、Yes, they’re delicious.

?D、OK. 我的答案:C 此题得分:2.5分 5.(2.5分)– What can I do for you? --__________. ?A、Hello. ?B、I want to buy this book. ?C、Thank you. ?D、Nice to meet you. 我的答案:B 此题得分:2.5分 6.(2.5分) Iron expands when____ . ?A、heat ?B、hot ?C、heated ?D、is hot 我的答案:C 此题得分:2.5分 7.(2.5分)— What did you think of Bellow’s new book? — I enjoyed ________ it. ?A、to read ?B、reading ?C、to have read ?D、the reading of 我的答案:B 此题得分:2.5分 8.(2.5分)—May I help you with some shoes, sir? — Yes. I’ d lik e to try on those brown __________. ?A、one ?B、ones ?C、two ?D、pair

北邮网络学院大学英语2阶段作业3

一、阅读理解(共1道小题,共25.0分) 1. A pretty, well―dressed young lady stopped a taxi in a big square, and a said to the driver, "Do you see that young man at the other side of the square?" "Yes," said the taxi driver. The young man was standing outside a restaurant and looking impatiently (不耐烦地) at his watch every few seconds. "Take me over there," said the young lady. There were a lot of cars and buses in the square, so the taxi driver asked, "Are you afraid to cross the street?" "Oh, no!" said the young lady. "But I promised that I would meet the young man for lunch at one o' clock, and it is now a quarter to two. If I arrive in a taxi, it will at least seem as if I had tried not to be late." 1.How did the young woman get to the square? A.She arrived in a taxi. B.She drove there in a car. C.She got there by bus. D.The story doesn't tell us. 2.Why did the lady stop the taxi? A.Because she didn't want to be late for her appointment (约会). B.Because she wanted to get out of the taxi. C.Because she wanted to go to the restaurant in it. D.Because she was afraid of walking across the street. 3.The young man at the other side of the square_______. A.had probably been waiting for a long time B.had some problem with his watch C.was probably a waiter of the restaurant D.was someone the young lady didn't want to see 4.The young lady was_______. A.clever at making excuse B.not late at all C.45 minutes earlier D.15 minutes late 5.Had she tried not to be late? A.Yes, she had tried her best. B.No, she was just pretending that she had tried. C.Yes, she had tried but she was still late. D.No, she thought being late was better than being early.

北邮大学英语2阶段作业2

A . anyone else B . anything C . some of the things D . anything else A . more larger, all B . much larger, that C . very larger, both D . larger, those

A . flooded B . were flooded C . was flooded D . flood √4. A . being B . C . having D . having A . happened to see B . was happened to see C . happened to be seen D . was happened to be seen

A . rather B . enough C . quite a D . fairly A . the much best B . much the most best C . the very best D . very the best A . will put off

B . will be put off C . will be put D . has put off A . When B . What time C . How often D . How long A . take good care of B . has taken good care of C . took good care of D . are taken good care of

《大学英语(三)》第二次作业答案2017

你的得分:90.0 完成日期:2017年02月5日 17点34分 说明:每道小题选项旁的标识是标准答案。 一、单项选择题。本大题共35个小题,每小题 2.5 分,共87.5分。在每小题给出的选项中,只有一项是符合题目要求的。 1. o—Can you go to the concert with us this evening? o—________________ C.No, I already have plans. D.I’d love to, but I’m busy tonight. E.No, I really don’t like being with you. F.I’m ill, so I shouldn’t go out. o—Would you like to go skating with me? o—________________. B.Yes, I think so C.No, thanks D.Yes, I'd love to E.I'm afraid not o—What about going for a walk? o—________________. B.It’s good for you C.That’s all right D.So, do I E.Why not? A good idea o—Hello, may I have an appointment with the headmaster? o—________________. B.Sorry, I don't know you C.No, you can't D.Certainly. Wait a minute, please E.Let me see o—May I use your bike for a moment? o—________________. B.It’s well. C.It doesn’t matter. D.By all means.

相关主题