重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
当前位置: 首页 > 远程教育 > 东北大学
网友您好, 请在下方输入框内输入要搜索的题目:
搜题

题目

[主观题]

阅读理解There is no doubt that man is a member of the animal kingdom.Anyone who has th

ought about this fact seriously must have wondered how it has come about that man has achieved a position so supreme(最高的) among the myriad(无数的) kinds of animal life.Two characteristics of man, in comparison with all other animals, that stand out above all others are the creation and use of tools and the development and use of language.Since no other animals have achieved these abilities, it must be assumed that man’s evolutionary development led to his capacity to create and use tools and to devise and use language.

Once these abilities and practices evolved, they probably became driving forces in the further evolution of man.Those members of the species who become most proficient(精通的) in the fabrication of tools and in the command of language and thought would tend to survive and maintain their kind for good, at the expense of those of lesser ability.

11.Which of the following statements best expresses the main idea of the passage?()

A.Tools and language are either the effects or the causes of human evolution.

B.No other animals have achieved human abilities.

C.Among the animals, only man is able to use tools and language.

D.Man owns his capacity to making use of tools and language.

12.“Animal kingdom” in the passage refers to ().

A.the place where all animals live

B.the animal society

C.all kinds of animals, including man

D.the forest with animals

13.One important condition for man’s evolution is() .

A.the animal kingdom

B.a supreme position

C.the myriad kinds

D.his natural capacity

14.The phrase “come about” in the passage is likely to mean ________.

A.happened

B.appeared

C.arrived

D.succeeded

15.The last sentence suggests that() .

A.those of lesser ability would be very expensive

B.in order to survive, man has to sacrifice some other animals

C.those who become proficient in making tools can speak well

D.language and thought could be acquired by man

查看参考答案
更多“阅读理解There is no doubt that man is a member of the animal kingdom.Anyone who has th”相关的问题

第1题

阅读下列程序说明和C++代码,将应填入(n)处。【说明】 ①在类体中添加函数move(double ax,double ay)

阅读下列程序说明和C++代码,将应填入(n)处。

【说明】

①在类体中添加函数move(double ax,double ay)的定义,使得点的坐标x和y分别移动 ax和ay个单位。

②在类定义外完成重载的两个构造函数CPosition()和CPosition(double dx,double dy),其中前者为不带参数的构造函数,使CPosition对象的默认值为x=0,y=0,后者为带参数的构造函数,把数据成员x和y分别初始化为参数dx和dy的值。

③完成函数double distance(double bx,double by)的定义,该函数返回*this和点(bx, by)的距离。

注意:除在指定的位置添加语句外,请不要改动程序中的其他语句。

源程序文件test5.cpp清单如下:

include<iostream.h>

include<math.h>

class CPosition

{

public:

CPosition();

CPosition(double dx,double dy);

double getx();

double gety();

(1)

double distance(double bx,double by);

private:

double x;

double y;

};

(2)

{

x=0;y=0;

}

CPosition::CPosition(doub,e dx,doub,e dy)

{

x=dx; y=dy;

}

double CPosition::getx()

{

return x;

}

double CPosition::gety()

{

return y;

}

double CPosition::distance(double bx,double by)

{

(3)

}

vold main()

{

double a,b;

cout<<"|nput x,y position of a point:";

cin >> a >> b;

CPosition psA(a,b);

cout<<"Input x,y position of another point:";

cin >>a >> b;

cout <<"The distance is" <<psA.distance(a,b) <<end1;

}

点击查看答案

第2题

有以下函数定义:void fun(int n,doub x){……} 若以下选项中的变量都已正确定义并赋值,则对函数fun

有以下函数定义: void fun(int n,doub x) {……} 若以下选项中的变量都已正确定义并赋值,则对函数fun的正确调用语句是()。

A.fun(int y,double m);

B.k=fun(10,12.5);

C.fun(x,n);

D.void fum(n,x);

点击查看答案

第3题

给定程序如下public static void main(String args[]) {Float f=new Float(4.2f);Float c;Doub

A.equals(d)

B.c==d

C.equals(f)

D.c=f

点击查看答案

第4题

给定程序如下public static void main(String args[]) {Float f=new Float(4.2f);Float c;Doub
给定程序如下public static void main(String args[]) {Float f=new Float(4.2f);Float c;Doub

给定程序如下

public static void main(String args[]) {

Float f=new Float(4.2f);

Float c;

Double d=new Double(4.2);

float fl=4.2f;

c=f;

}

下列选项中()的值为真。

A、f.equals(d)

B、c=f

C、c==d

D、c.equals(f)

点击查看答案

第5题

如果类名为Myclass,那么()可以作为它的构造函数。A.~Myclass()B.Myclass(doublea)C.~Myclass(doub

如果类名为Myclass,那么()可以作为它的构造函数。

A.~Myclass()

B.Myclass(doublea)

C.~Myclass(doublea)

D.voidMyclass()

点击查看答案

第6题

以下程序的输出结果是______。 include<iostream.h> int add(int x, int y) { return x+y; } doub

以下程序的输出结果是______。

include<iostream.h>

int add(int x, int y)

{

return x+y;

}

double add(double x, double y)

{

return x+y;

}

void main()

{

int a=3, b=3;

double c=6.5, d=1.5;

cout<<add(a, b)<<","<<add(c, d)<<end1;

}

点击查看答案

第7题

在计算机的硬件技术中,构成存储器的最小单位是()。A.字节(Byte)B.进制位(bit)C.字(Word)D.字(Doub

在计算机的硬件技术中,构成存储器的最小单位是()。

A.字节(Byte)

B.进制位(bit)

C.字(Word)

D.字(Double Word)

点击查看答案

第8题

有下列程序:#include<iostream>using namespace std;int main(){void function(double val);doub

有下列程序: #include<iostream> using namespace std; int main() { void function(double val); double val; function(val); cout<<val; return 0; } void fimction(double val) { v

A.编译出错,无法运行

B.输出3

C.输出:3.0

D.输出一个不确定的数

点击查看答案

第9题

下列程序的执行的结果是______。 public class ex8 {public static void main(String[]args){doub

下列程序的执行的结果是______。 public class ex8 { public static void main(String[] args) { double d=0; int a=3; while (a>0) { d=d+l. of/a; if (d<=2) continue; a--; } System.out.println (d); } }

A.4.2

B.3.5

C.2.8

D.无限循环

点击查看答案

第10题

根据阅读理解的条件谈谈怎么提高阅读能力?
点击查看答案

第11题

阅读理解由什么构成()

A.词汇理解

B.长篇阅读

C.仔细阅读

D.短篇阅读

点击查看答案
赏学吧APP
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案
购买前请仔细阅读《购买须知》
请选择支付方式
微信支付
支付宝支付
点击支付即表示你同意并接受《服务协议》《购买须知》
立即支付
搜题卡使用说明

1. 搜题次数扣减规则:

功能 扣减规则
基础费
(查看答案)
加收费
(AI功能)
文字搜题、查看答案 1/每题 0/每次
语音搜题、查看答案 1/每题 2/每次
单题拍照识别、查看答案 1/每题 2/每次
整页拍照识别、查看答案 1/每题 5/每次

备注:网站、APP、小程序均支持文字搜题、查看答案;语音搜题、单题拍照识别、整页拍照识别仅APP、小程序支持。

2. 使用语音搜索、拍照搜索等AI功能需安装APP(或打开微信小程序)。

3. 搜题卡过期将作废,不支持退款,请在有效期内使用完毕。

请使用微信扫码支付(元)
订单号:
遇到问题请联系在线客服
请不要关闭本页面,支付完成后请点击【支付完成】按钮
遇到问题请联系在线客服
恭喜您,购买搜题卡成功 系统为您生成的账号密码如下:
重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁。
发送账号到微信 保存账号查看答案
怕账号密码记不住?建议关注微信公众号绑定微信,开通微信扫码登录功能
警告:系统检测到您的账号存在安全风险

为了保护您的账号安全,请在“赏学吧”公众号进行验证,点击“官网服务”-“账号验证”后输入验证码“”完成验证,验证成功后方可继续查看答案!

- 微信扫码关注赏学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反赏学吧购买须知被冻结。您可在“赏学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注赏学吧 -
请用微信扫码测试
温馨提示
每个试题只能免费做一次,如需多次做题,请购买搜题卡
立即购买
稍后再说
赏学吧