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

题目

[主观题]

阅读1:A new study suggests that contrary to most surveys, people are actually more stressed at home than at work

A new study suggests that contrary to most surveys, people are actually more stressed at home than at work. Researchers measured people’s cortisol, which is a stress marker, while they were at work and while they were at home and found it higher at what is supposed to be a place of refuge.

“Further contradicting conventional wisdom, we found that women as well as men have lower levels of stress at work than at home, ” writes one of the researchers, Sarah Damske. In fact women even say they feel better at work, she notes.“ It is men, not women, who report being happier at home than at work. ”Another surprise is that findings hold true for both those with children and without, but more so for nonparents. This is why people who work outside the home have better health.

What the study doesn’t measure is whether people are still doing work when they’re at home, whether it is household work or work brought home from the office. For many men, the end of the workday is a time to kick back. For women who stay home, they never get to leave the office. And for women who work outside the home, they often are playing catch-up-with-household tasks. With the blurring of roles, and the fact that the home front lags well behind the workplace a making adjustments for working women, it’s not surprising that women are more stressed at home.

But it’s not just a gender thing. At work, people pretty much know what they’re supposed to be doing: working, marking money, doing the tasks they have to do in order to draw an income. The bargain is very pure: Employee puts in hours of physical or mental labor and employee draws out life-sustaining moola.

On the home front, however, people have no such clarity. Rare is the household in which the division of labor is so clinically and methodically laid out. There are a lot of tasks to be done, there are inadequate rewards for most of them. Your home colleagues-your family-have no clear rewards for their labor; they need to be talked into it, or if they’re teenagers, threatened with complete removal of all electronic devices. Plus, they’re your family. You cannot fire your family. You never really get to go home from home.

So it’s not surprising that people are more stressed at home. Not only are the tasks apparently infinite, the co-workers are much harder to motivate.

21.According to Paragraph 1,most previous surveys found that home_____

[A] offered greater relaxation than the workplace

[B] was an ideal place for stress measurement

[C] generated more stress than the workplace

[D] was an unrealistic place for relaxation

22. According to Damaske, who are likely to be the happiest at home?

[A] Childless wives

[B] Working mothers

[C] Childless husbands

[D] Working fathers

23.The blurring of working women's roles refers to the fact that_____

[A] it is difficult for them to leave their office

[B] their home is also a place for kicking back

[C] there is often much housework left behind

[D] they are both bread winners and housewives

24.The word“moola”(Line4,Para4)most probably means_____

[A] skills

[B] energy

[C] earnings

[D] nutrition

25.The home front differs from the workplace in that_____

[A] division of labor at home is seldom clear-cut

[B] home is hardly a cozier working environment

[C] household tasks are generally more motivating

[D] family labor is often adequately rewarded

查看参考答案
更多“阅读1:A new study suggests that contrary to most surveys, people are actually more stressed at home th…”相关的问题

第1题

阅读下面Applet程序import javax. swing. *;import java. awt. *;public class SwintgApplet ext

阅读下面Applet程序 import javax. swing. *; import java. awt. *; public class SwintgApplet extends JApplet{ JLabel 1=new JLabel("This is a Swing Applet."); public void init(){ ________________________________ } } 在程序下画线处填入正确的选项是

A.Container contentPane=getContenPane(); cotentPane. add(1);

B.JPanel comtenPane=new Jpane(); contentPane. add(1);

C.contentPane. add(1);

D.add(1);

点击查看答案

第2题

阅读下面Applet程序import javax.swing.*:import java.awt.*:public Class Test SwingApplet ext

阅读下面Applet程序 import javax.swing.*: import java.awt.*: public Class Test SwingApplet extends JApplet { JLabel 1=new JLabel("This is a Swing Applet."); public void init() { ______ } } 程序中下画线处应填入的正确选项是

A.Container contentPane=getContentPane();contentPane.add(1);

B.Jpanel contentPane=new JPanel();contentPane.add(1);

C.contentPane.add(1);

D.add(1);

点击查看答案

第3题

阅读下列代码后publicclass Person{intarr[]=new int[10];publicstaticvoidmain(Stringargs[]){S

阅读下列代码后 publicclass Person{ intarr[]=new int[10]; publicstaticvoidmain(Stringargs[]){ System.out.println(alt[1]); } } 正确的说法是()。

A.编译时将产生错误

B.编译时正确,运行时将产生错误

C.输出零

D.输出空

点击查看答案

第4题

阅读下面代码: import java.awt.*; public class Exam11_1 {private Frame. f;private Button b1

阅读下面代码:

import java.awt.*;

public class Exam11_1

{

private Frame. f;

private Button b1,b2,b3,b4;

public static void main(String args[]

{

Exam11_1 that = new Exam11 1 ();

that.go();

}

public void go()

{

______;

f.setLayout(new FlowLayout()) ;;

b1 = new Button ("Button 1");

b2 = new Button ("Button 2");

b3 = new Button ("Button 3");

b4 = new Button ("Button 4");

f.add (b1);

f.add (b2);

f.add (b3);

f.add (b4);

f.pack ();

f.setVisible (true);

}

}

请在程序中画线处填写正确的语句【 】,以便编译运行程序后得到正确的结果。

点击查看答案

第5题

阅读下列代码后public class Person{int arr[]=new int[10];public static void main(String arg

阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); } } 正确的说法是()。

A.编译时将产生错误

B.编译时正确,运行时将产生错误

C.输出零

D.输出空

点击查看答案

第6题

4、阅读下面代码,写出输出结果: public class A { public void fun1(int n) { Console.WriteLine("{0}*2={1}", n, 2 * n); } public void fun2(int n) { Console.WriteLine("{0}*3={1}", n, 3 * n); } }; public delegate void mydelegate(int n); public class Test { static void Main() { A a = new A(); mydelegate p = new mydelegate(a.fun1); p += a.fun2; p(1); } }
点击查看答案

第7题

阅读材料,回答题。Extensive new studies suggest that the world has made extraordinary progre
阅读材料,回答题。

Extensive new studies suggest that the world has made extraordinary progress in reducing poverty in recent decades. The research suggests that the pace of economic progress has been rapid and continued for decades, built on the foundations of relative political stability, rising trade, and economic liberalization (自由化) after two world wars. One new study, published recently by the Institute for International Economics in Washington, find that the proportion of the 6.1 billion people in the world who live on $1 a day or less shrank from 63 percent in 1950 to 35 percent in 1955and 12 percent in 1999. By some other measures, the progress has been more modest. Still, economists agree that poverty has plunged in key nations such as India and especially China, thanks to slowing population growth as well as economic freedom. "This is a huge success for the world as a whole," says Harvard University economist Richard Cooper. "We are doing something right. "

The news comes as the World Bank is about to open its annual meeting in Washington an event that has been troubled in recent years by protests that the Bank and its sister Institution, the International Monetary Fund(IMF 国际货币组织) have done too little for the world’s poor. The new economic research will not put an end to that dispute. Vast populations remain poor, and many still question the wisdom of World Bank policies. Nonetheless, the research findings are helpful to understand what policies should be followed by those institutions and hundreds of other development groups working very hard to hasten the pace of world economic progress. If dramatic gains are under way, the present policies calling for open tharkets, free business activities, and tight monetary control are working and correct.

But critics of IMF and World Bank policies maintain that such economic success stories as Japan, China, South Korea and Singapore are rooted in more than just "free" markets. These nation shave managed to grow rapidly, and thereby reduce poverty, by limiting imports when their domestic industries were young, pushing exports to rich nations, and putting controls on purely international financial flows. The have been open to foreign owned factories but have often insisted that those investors share the knowledge and skill on modern technologies.

The word "plunged" in the first paragraph means__________. 查看材料

A.decreased

B.climbed

C.increased

D.dropped into water

点击查看答案

第8题

阅读下列代码后public class Person{int arr[]=new int[10];public static void main(String arg

阅读下列代码后 public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println (arr[1]); } } 正确的说法是()。

A.编译时将产生错误

B.编译时正确,运行时将产生错误

C.输出零

D.输出空

点击查看答案

第9题

阅读下列代码后public class Person{int arr[]=new int[10];public static void main(String arg

阅读下列代码后public class Person{ int arr[]=new int[10]; public static void main(String args[]){ System.out.println(arr[1]); }}正确的说法是

A.编译时将产生错误

B.编译时正确,运行时将产生错误

C.输出零

D.输出空

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

1. 搜题次数扣减规则:

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

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

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

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

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

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

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