html5 sexteen,Sexy TV shows blamed for teen pregnancies

html5 sexteen,Sexy TV shows blamed for teen pregnanciesExposuretosomeformsofentertainmentisacorruptinginfluenceonchildren,leadingteenswhowatchsexyprogramsintoearlypregnanciesandchildrenwhoplayviolentvideogamestoadoptaggressiv…

大家好,又见面了,我是你们的朋友全栈君。

Exposure to some forms of entertainment is a corrupting influence on children, leading teens who watch sexy programs into early pregnancies and children who play violent video games to adopt aggressive behavior, researchers said yesterday.

Researchers at the RAND research organization said their three-year study was the first to link viewing of racy television programming with risky sexual behavior by teens.

“Our findings suggest that television may play a significant role in the high rates of teenage pregnancy in the United States,” said Anita Chandra, a behavioral scientist who led the research at RAND, a nonprofit research organization.

“We’re not saying we’re establishing causation, but we are saying this is one factor that we were able to prospectively link to the teen pregnancy outcome,” Chandra said.

The researchers recruited adolescents aged 12 to 17 and surveyed them three times between 2001 and 2004, asking about television viewing habits, sexual behavior and pregnancy.

In findings that covered 718 teenagers, there were 91 pregnancies. The top 10th of adolescents who watched the most sexy programming were at double the risk of becoming pregnant or causing a pregnancy compared to the 10th who watched the fewest such programs, according to the study published in the journal Pediatrics.

The study focused on 23 free and cable television programs popular among teenagers including situation comedies, dramas, reality programs and animated shows. Comedies had the most sexual content and reality programs the least.

“The television content we see very rarely highlights the negative aspects of sex or the risks and responsibilities,” Chandra said. “So if teens are getting any information about sex they’re rarely getting information about pregnancy or sexually transmitted diseases.”

On the decline in US

Teen pregnancy rates in the United States have declined sharply since 1991 but remain high compared to other industrialized nations. Nearly 1 million girls aged 15 to 19 years old become pregnant yearly, or about 20 percent of sexually active females in that age group. Most of the pregnancies were unplanned, the report said.

Young mothers are more likely to quit school, require public assistance and live in poverty, it said.

“Television is just one part of a teenager’s media diet that helps to influence their behavior. We should also look at the roles that magazines, the Internet and music play in teens’ reproductive health,” Chandra said, acknowledging still other factors can influence teen sex habits.

Living in a two-parent family reduced the chances of a teen getting pregnant or causing a pregnancy. Black teenagers, and those with discipline problems, had higher risks.

The report suggested broadcasters provide more realistic portrayals of the consequences of sex and that parents limit their children’s access to sexually explicit programming.

Children increasingly medicated

More and more US children are being given drugs to fight chronic conditions such as asthma and hyperactivity, according to a study published yesterday.

From 2002 to 2005 prescriptions for medicines to treat type-2 diabetes doubled, asthma medications rose by more than 46 percent, medicines for attention-deficit hyperactivity disorder increased by more than 40 percent and prescriptions for cholesterol-lowering drugs were up by 15 percent.

The study was conducted by Emily Cox of Express Scripts Inc in St. Louis, a manager of pharmacy insurance benefit plans, Dr Donna Halloran of the Pediatric Research Institute in St Louis, and Douglas Mager of the Kansas Health Institute in Topeka.

In a report published in the November issue of Pediatrics, they said the increases could mean that chronic conditions are on the rise.

But they said the trend could also reflect other factors such as changes in the way doctors prescribe drugs and better screening that identifies more chronic conditions.

In addition, the team said federal programs that encouraged research on pediatric drugs resulted in “increased data on safety and efficacy in children (that) likely provided physicians with a greater degree of confidence to prescribe (such drugs).”

The findings were based on insurance claims for 3.2 million children aged 5 to 19.

Agencies

(China Daily 11/04/2008 page10)

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/142101.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • 图像处理算法其实都很简单「建议收藏」

    图像处理算法其实都很简单「建议收藏」要学习高斯模糊我们首先要知道一些基本概念:线性滤波与卷积的基本概念    线性滤波可以说是图像处理最基本的方法,它可以允许我们对图像进行处理,产生很多不同的效果。做法很简单。首先,我们有一个二维的滤波器矩阵(有个高大上的名字叫卷积核)和一个要处理的二维图像。然后,对于图像的每一个像素点,计算它的邻域像素和滤波器矩阵的对应元素的乘积,然后加起来,作为该像素位置的值。这样就完成了滤波过程。

    2022年5月17日
    45
  • Java中使用JDBC连接数据库[通俗易懂]

    Java中使用JDBC连接数据库[通俗易懂]Java中使用JDBC连接数据库加载驱动创建数据库连接创建执行sql的语句执行语句处理执行结果释放资源源代码附上:packagecom.demo.test;importjava.sql.Connection;importjava.sql.DriverManager;importjava.sql.PreparedStatement;imp…

    2022年6月23日
    31
  • 高德地图自定义点标记大小_高德地图标注点点击事件 自定义参数

    高德地图自定义点标记大小_高德地图标注点点击事件 自定义参数init(){varprovinces=this.provinces;if(!provinces||provinces.length==0){returnfalse;}varhmap={resizeEnable:true,center:[“106.687915″,”26.499209”],zoom:10};varmap=newAMap.Map(“cont…

    2022年5月11日
    74
  • ioctl函数_通过ioctl函数设置IP不允许修改

    ioctl函数_通过ioctl函数设置IP不允许修改一、什么是ioctl  ioctl是设备驱动程序中对设备的I/O通道进行管理的函数。所谓对I/O通道进行管理,就是对设备的一些特性进行控制,例如串口的传输波特率、马达的转速等等。  ioctl函数是文件结构中的一个属性分量,就是说如果你的驱动程序提供了对ioctl的支持,用户就可以在用户程序中使用ioctl函数来控制设备的I/O通道。  用户程序所作的只是通过命令码(cmd)告诉驱动程序它想…

    2022年10月18日
    3
  • 关于Random.nextInt()方法详解「建议收藏」

    关于Random.nextInt()方法详解「建议收藏」博主在阅读>这本书时,发现其中有一个使用Random.readInt()的示例,便在idea上敲着看。发现运行结果与书上的一模一样。不禁让我好奇了起来。如下图:                 如果你也照着敲了一遍的话,我相信结果如下:                  问题来了!random.read

    2022年7月22日
    7
  • Docker针对运行JAVA程序的优化

    Docker针对运行JAVA程序的优化

    2021年5月30日
    116

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号