题目内容

“My job is killing me.”Who among us hasn't issued that complaint at least once? Now a new study suggests that your dramatic complaint may1some scientific truth.The 20-year study, by researchers at Tel Aviv University,2to examine the relationship between the workplace and a person's risk of death. Researchers3820 adults who had undergone a4physical exam at a health clinic in 1988, and then interviewed them 5detail about their workplace conditions—asking how nice their colleagues were, whether their boss was supportive and how much6they had in their position.The participants7in age from 25 to 65 at the start of the study and worked in a variety of8, including finance, health care, manufacturing and insurance. The researchers 9the participants through their medical records: by the study's conclusion in 2008, 53 people had died—and they were significantly more likely than those who survived to report having a10work environment.People who reported having little or no11support from their co-workers were 2.4 times more likely to die12the course of the study than those who said they had close, supportive13with their workmates. Interestingly, the risk of death was14only to people's perceptions of their co-workers, not their bosses . People who reported negative relationships with their supervisors were15likely to die than others.The study was observational, unlessit could not determine whether toxic workplace environments caused death, only that it was collaboratedwith the risk. But the findings add to the evidence whenhaving a supportive social network decreases stress and helps fostergood health. On the other hand, being exposed atchronic stress contributes to depression, ill health and death.

查看答案
更多问题

以下关于头文件描述正确的是_____

A. 头文件是每一个程序都必须要包含的
B. 程序中的每个源文件都包含同一个头文件,一定会导致重复包含
C. 头文件可以起到共享对象的作用
D. 任何情况下头文件都不可以循环包含(如在文件a.h中使用
E. include "b.h",在文件b.h中使用
F. include "a.h")

以下对头文件“a.h”、“b.h”和“c.h”的包含正确的是___

A.
B. include
C. B.
D. include "a.h, b.h, c.h"
E. C.
F. include a.h, b.h, c.h
G. D.
H. include "a.h"
I. include "b.h"
J. include "c.h"

关于以下程序描述正确的是_____#includeint a = 7;void main() {static int a = 11;printf("%d\n", a);}

A. 该程序运行后输出11
B. 该程序运行后输出7
C. 该程序有错,即变量a重复定义
D. 主函数中的变量a不可以被修改

一个程序包含两个源文件文件main.cpp和funcs.cpp,如下:main.cpp的内容是:#includestatic int getAge(int);void main(){int age=19;printf("%d\n", getAge(age));}funcs.cpp的内容是:static int getAge(int a){if(a>18) return a+2;else return a-1;}关于此程序以下描述正确的是_____

A. 该程序的运行结果是21
B. 该程序有误,将funcs.cpp文件中函数getAge定义前的关键字static删掉即可
C. 该程序有误,将main.cpp文件中函数getAge声明前的关键字static删掉即可
D. 该程序有误,将main.cpp和funcs.cpp文件中函数getAge前的关键字static删掉即可

答案查题题库