问题 单项选择题

Young girls at high risk for depression appear to have a malfunctioning reward system in their brains, a new study suggests. The finding comes from research that (1) a high-risk group of 13 girls, aged 10 to 14, who were not depressed but had mothers who (2) recurrent depression and a low-risk group of 13 girls with no (3) or family history of depression. Both groups were given MRI brain (4) while completing a task that could (5) either reward or punishment.

(6) with girls in the low-risk group, those in the high-risk group had (7) neural responses during both anticipation and receipt of the reward. (8) , the high-risk girls showed no (9) in an area of the brain called the dorsal anterior cingulated cortex (背侧前扣带皮质), believed to play a role in (10) past experiences to assist learning.

The high-risk girls did have greater activation of this brain area (11) receiving punishment, compared with the other girls. The researchers said that this suggests that high-risk girls have easier time (12) information about loss and punishment than information about reward and pleasure.

"Considered together with reduced activation in the striatal (纹状体的) areas commonly observed (13) reward, it seems that the reward-processing system is critically (14) in daughters who are at elevated risk for depression, (15) they have not yet experienced a depressive (16) ," wrote Ian H. Gotlib, of Stanford University, and his colleagues. " (17) , longitudinal studies are needed to determine whether the anomalous activations (18) in this study during the processing of (19) and losses are associated with the (20) onset of depression," they concluded. The study was published in the April of the Archives of General Psychiatry.

20()

A.subsequent

B.inadequate

C.sequential

D.frequent

答案

参考答案:A

解析:

[解题思路] 本句说明的是实验的结果。“不规则的活化作用是否与______抑郁症有关”,通过对前文分析可知,这些参与实验的女孩并没有患抑郁症,研究的是患病风险的高低,因此[A]正确。[B] inadequate用法举例:The failure in the examination could be due to my inadequate revision.考试的失败可能是由于我没有充分地复习。[C] sequential用法举例:The major advantage to sequential systems is their low cost.顺序存取系统的主要优点是成本低。[D] frequent用法举例:Revolution is a frequent outgrowth of tyranny.革命是暴政促成的常见结果。

问答题

试题六

阅读下列说明和Java代码,将应填入(n)处的字句写在答题纸的对应栏内。

【说明】 某公司的组织结构图如图6-1所示,现采用组合(Composition)设计模式来设计,得到如图6-2所示的类图。

其中Company为抽象类,定义了在组织结构图上添加(Add)和删除(Delete)分公司/办事处或者部门的方法接口。类ConcreteCompany表示具体的分公司或者办事处,分公司或办事处下可以设置不同的部门。类HRDepartment和FinanceDepartment分别表示人力资源部和财务部。 【Java代码】 import java.util.*: (1) Company{ protected String name; public Company(String name){(2)=name:} public abstract void Add(Company c);//增加子公司、办事处或部门 public abstract void Delete(Company c);//删除子公司、办事处或部门 } class ConcreteCompany extends Company{ private List< (3) > children=new ArrayList< (4) >(); //存储子公司、办事处或部门 public ConcreteCompany(String name){super(name);} public void Add(Company c){(5) .add(c);} public void Delete(Company c){(6).remove(c);} } class HRDepartment extends Company{ public HRDepartment(String name){super(name);} //其它代码省略 } class FinanceDepartment extends Company{ public FinanceDepartment(String name){super(name);} //其它代码省略 } public class Test{ public static void main(String[] args){ ConcreteCompany root=new ConcreteCompany(“北京总公司”): root.Add(new HRDepartment(“总公司人力资源部”)): root.Add(new FinanceDepartment(“总公司财务部”)): ConcreteCompany comp=new ConcreteCompany(“上海分公司”): comp.Add(new HRDepartment(“上海分公司人力资源部”)); comp.Add(new FinanceDepartment(“上海分公司财务部”)); (7); ConcreteCompany comp =new ConcreteCompany(“南京办事处”); compl.Add(new HRDepartment(“南京办事处人力资源部”)): compl.Add(new FinanceDepartment(“南京办事处财务部”): (8);//其它代码省略 } }

(1)处填()。

填空题