重要提示: 请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
找答案首页 > 全部分类 > 外语类考试
搜题
网友您好, 请在下方输入框内输入要搜索的题目:
搜题
题目内容 (请给出正确答案)
[主观题]

We humans aren't the only ones who want to fit in. Researchers have discovered that chimpa

nzees, too, preferentially adopt their fellow chimps' way of doing things.

Andrew Whiten of St. Andrews University in Fife, Scotland, and his colleagues studied three groups of captive chimpanzees and the ways in which they assumed different techniques for obtaining food. The first group contained a high-ranking female that had been taught to retrieve food from an apparatus by using a stick to push a blockage away, thus freeing the food item. The second group also contained a female expert, but one that had been instructed to lift the blockage with the stick in order to release the treat. The third group was a control group and did not have a local expert. When the experts were reunited with their respective group, the other chimps watched their activities at the food apparatus intently and learned to apply either the poking or lifting technique themselves. Members of the third group, lacking an expert to guide them, failed to figure out the contraption on their own.

For the most part, chimps in the first group initially stuck to poking and those in the second group stuck to lifting. But then, unexpectedly, some chimps discovered and began using the other strategy. When the food apparatus was reintroduced two months later, however, the chimps reverted to their group's normal way of doing things. In the case of those animals in the lifting group, this meant discarding a technique (poking) that is actually more natural for chimpanzees than lifting is.

"We have shown a non-human species conforming to a group norm, despite possession of an alternative technique that represents the norm of another group," the team writes in a report published online by the journal Nature. "Conformity fits the assumption of an intrinsic motivation to copy others, guided by social bonds rather than material rewards such as food."

The phrase "fit in" (Line l, Para. I) most likely means ______.

A.suit

B.adopt

C.adjust

D.conform

查看答案
更多“We humans aren't the only ones who want to fit in. Researchers have discovered that chimpa”相关的问题

第1题

以下程序的输出结果是 ______。#include<iostream.h>Int f(){static int i=0;int a=1;a+=;i++;ret

以下程序的输出结果是 ______。 #include<iostream.h> Int f(){ static int i=0; int a=1; a+=; i++; return a; } void main() { int i,s=0; for(i=0;i<4;i++) s+=f(); cout<<s;

A.10

B.15

C.21

D.28

点击查看答案

第2题

以下程序的输出结果是 ______。# include<iostream.h>int f(){static int i=0;int a=1;a+=i;i++;r

以下程序的输出结果是 ______。 # include<iostream.h> int f(){ static int i=0; int a=1; a+=i; i++; return a; } void main(){ int i,s=0; for(i=0; i<4;i++) s1+=f(); cout<<s; }

A.10

B.15

C.21

D.28

点击查看答案

第3题

以下程序的输出结果是_____。 include<iostream.h> void fun() {static int a=0; a+=2;cout < <

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

include<iostream.h>

void fun()

{ static int a=0;

a+=2;

cout < < a < < " ";}

void main()

{ int cc;

for(cc=1;cc<4;cc++)

fun() ;

cout < < endl;}

点击查看答案

第4题

阅读下面程序: include<iostream.h> void f(int n) { int x(5); static int y(10); if(n>0) { ++

阅读下面程序:

include<iostream.h>

void f(int n)

{

int x(5);

static int y(10);

if(n>0)

{

++x;

++y;

cout<<x<<","<<y<<endl;

}

}

void main()

{

int m(1);

f(m),

}

则该程序的输出结果是【 】

点击查看答案

第5题

下面程序的输出结果是【】。 include<iostream.h> int d=1; int fun(int p){ static int d=5; d+=p;

下面程序的输出结果是【 】。

include<iostream.h>

int d=1;

int fun(int p){

static int d=5;

d+=p;

cout<<d<<" ";

return d;

}

void main(){

int a:3;

cout<<fun(a+fun(D) )<<end1;

}

点击查看答案

第6题

以下程序的输出结果是【】。 include<iostream.h> void main() } int a=0; a+=(a=8); cout<<a; }

以下程序的输出结果是【 】。

include<iostream.h>

void main()

}

int a=0;

a+=(a=8) ;

cout<<a;

}

点击查看答案

第7题

以下程序的正确运行结果是()。#include<iostream.h>int f(int);void main(){int a=2,i;for(i=0;i<

以下程序的正确运行结果是()。 #include<iostream.h> int f(int); void main() { int a=2,i; for(i=0;i<3;i++)cout<<f(a)<<" "; cout<<endl; } int f(int a) { int b=0 static int c=3; b++:c++; return(a+b+c); }

A.777

B.7 10 13

C.79 11

D.7 8 9

点击查看答案

第8题

以下程序的输出的结果是()。#include<iostream.h>int x=3:void main(){void fun();int i;for(i=1;

以下程序的输出的结果是()。 #include<iostream.h> int x=3: void main() { void fun(); int i; for(i=1;i<x;i++) fun(); } void fun() { static int x=1; x*=x+1; cout<<x<<" "; }

A.3,3

B.2,2

C.2,6

D.2,5

点击查看答案

第9题

以下程序的输出的结果是()。#include <iostream.h>int x=3;void main(){void incre();int i;for (

以下程序的输出的结果是()。#include <iostream.h>int x=3;void main(){ void incre(); int i; for (i=1;i<x;i++) incre();}Void incre(){ static int x=1; x*=x+1; cout<<x<<"";}

A.3 3

B.2 2

C.2 6

D.2 5

点击查看答案

第10题

以下程序的正确运行结果是()。#include<iostream.h>int f(int);.void main(){int a=2,i;for(i=0;i

以下程序的正确运行结果是()。 #include<iostream.h> int f(int);. void main() { int a=2,i; for(i=0;i<3;i++) cout<<f(a)<<" "; cout<<endl; } int f(int a) { int b=0; static int c=3; b++;c++; return(a+b+c); }

A.777

B.7 10 13

C.79 11

D.7 8 9

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

1. 搜题次数扣减规则:

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

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

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

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

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

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

- 微信扫码关注上学吧 -
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
- 微信扫码关注上学吧 -
请用微信扫码测试
选择优惠券
确认选择
谢谢您的反馈

您认为本题答案有误,我们将认真、仔细核查,如果您知道正确答案,欢迎您来纠错

上学吧找答案