题目内容 (请给出正确答案)
[主观题]

A new survey of medical-school deans finds that unprofessional conduct on blogs and social

-networking sites is increasing among medical students. Although med students fully understand patient-confidentiality laws and are indoctrinated in the high ethical standards to which their white-coated profession is held, many of them still use Internet to make discriminatory statements and discuss patient cases in violation of confidentiality laws, according to the survey.

We assumed that students were "educated about professional conduct online and used better judgment." But medical students, it seems, are no different from the rest of us when it comes to posting drunken party pictures online or tweeting about their daily comings, goings and musings — however inappropriate they may be. Many students feel they are entitled to post what they wish on their personal profiles, maintaining that the information is in fact personal and not subject to the same policies and guidelines that govern their professional behavior. on campus. Though medical students would agree that physicians — and other professionals, like teachers — should be held to a higher standard of integrity by society, the new study suggests that they're confused by how rules apply, especially in cyberspace, once the white coat comes off. "They think it's something only for their friends, even though it's not private." says Dr. Neil Parker, senior associate dean for student affairs for graduate medical education at UCLA's David Geffen School of Medicine.

That attitude is largely dictated by age, says Parker. In focus groups involving students, faculty, administrators and staff, the school has found a clear generational divide between those who tend to blur the line between their personal and professional lives and those who don't. Younger students were more likely than older staff members to believe that their thoughts and opinions were valid to post online, regardless of their potentially damaging or discriminatory impact on others.

The issue is especially relevant when it comes to discussing patient cases. Laws prohibit doctors from talking about patients using individually identifiable information. However, as Parker notes, sharing patient care experiences can be a useful and powerful learning tool for medical students that encourages "reflection, empathy and understanding," he writes in the paper. Although discussing their experiences online may be allowed, students must be made aware that identifying information is not limited to patients' names and that divulging other characteristics and details often violates patient-privacy laws.

It's that type of education that medical schools need to include more in their curricula. Ensuring that students are aware of privacy settings on social-networking sites is another. "Most students want us to provide them with education and guidelines, but not policies. It is a different culture; we always say we have to be culture-sensitive to our patients, but we have to be culture-sensitive to our students as well." Parker says.

What is true according to the survey?

A.Many medical students treat patients unjustly.

B.Lots of medical staff violates confidentiality laws on the Internet.

C.Many medical students fail to hold high professional standard.

D.Patients' privacy needs to be protected badly.

查看答案
如搜索结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能会需要:
您的账号:
发送账号密码至手机
发送
更多“A new survey of medical-school…”相关的问题

第1题

设有如下程序: Private Sub Form. Click() Dim ary(1 To 5)As Integer Dim i As Integer

设有如下程序: Private Sub Form. Click() Dim ary(1 To 5)As Integer Dim i As Integer Dim sum As Integer For i=1 To 5 ary(i)=i+l sum=sum+ary(i) Next i Print sum End Sub 程序运行后,单击窗体,则在窗体上显示的是()。

A.15

B.16

C.20

D.25

点击查看答案

第2题

设有如下程序:Private Sub Form. Click() Dim ary(1 To 5)As Integer Dim i As Integer Dim su

设有如下程序:

Private Sub Form. Click()

Dim ary(1 To 5)As Integer

Dim i As Integer

Dim sum As Integer

For i=1 To 5

ary(i)=i+l

sum=sum+ary(i)

Next i

Print sum

End Sub

程序运行后,单击窗体,则在窗体上显示的是()。

A.15

B.16

C.20

D.25

点击查看答案

第3题

设有如下程序:Private Sub Form. Click() Dim s As Long,f As Long Dim n As Integer,i As Int

设有如下程序:

Private Sub Form. Click()

Dim s As Long,f As Long

Dim n As Integer,i As Integer

f=1

n=4

For i=1 To n

f=f*i

s=s+f

Next i

Print s

End Sub

程序运行后,单击窗体,输出结果是()。

A.32

B.33

C.34

D.35

点击查看答案

第4题

执行下面的程序,单击窗体后在窗体上显示的结果是 ______。Private Sub form_ Click()Dim Str1 As

执行下面的程序,单击窗体后在窗体上显示的结果是 ______。Private Sub form_ Click() Dim Str1 As String, Str2 As String Dim Str3 As String, I As Integer Str1 = "e" for I = t To 2 Str2 = Ucase (Str1) Str1 = Str2 & Str1 Str3 = Str3 & Str1 str1 = Chr (Asc(Str1) + I) Next I Print Str3End Sub

A.EeFF

B.eEfF

C.EEFF

D.eeFF

点击查看答案

第5题

设有如下程序: Private Sub Form. Click() Dim i As Integer,x As String,y As String x="

设有如下程序:

Private Sub Form. Click()

Dim i As Integer,x As String,y As String

x="ABCDEFG"

For i=4 To 1Step-1

y=Mid(X,i,i)+y

Next i

Print y

End Sub

程序运行后,单击窗体,输出结果为()。

A.ABCCDEDEFG

B.AABBCDEFG

C.ABCDEFG

D.AABBCCDDEEFFGG

点击查看答案

第6题

程序如下:Private Sub form_ Activate()Dim a As Integerfor i=4 To 5a=fun(i)Print a,Next iEnd

程序如下:Private Sub form_ Activate() Dim a As Integer for i=4 To 5 a=fun(i) Print a, Next iEnd SubPrivate Function fun(n)As Integer if n >0 then fun =n* fun(n-1) Else fun=1 End ifEnd Function 程序最后打印结果是______。

A.4 5

B.12 120

C.24 120

D.24 60

点击查看答案

第7题

设有如下程序:Private Sub Command1_ Click() Dim sum As Double, x As Double sum=0 n=0 For i=

设有如下程序: Private Sub Command1_ Click() Dim sum As Double, x As Double sum=0 n=0 For i=1 To 3 x=n/i n=n+1 sum=sum+x Next i End Sub 该程序通过For循环来计算sum的值,sum值的精确结果是()。

A.1+1/2+2/3

B.1+1/2+1/3+1

C.1/2+2/3

D.1/2+1/3

点击查看答案

第8题

设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Int

设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Integer For i=1 To 3 For j=1 To 3 a(i,j)=i*j+i Next j Next i Sum=0 For i=1 To 3 Sum=Sum+a(i,4-i) Next i Print Sum End Sub 运行程序,单击命令按钮,输出结果是______。

A.20

B.7

C.16

D.17

点击查看答案

第9题

设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Int

设有命令按钮Command1的单击事件过程,代码如下: Private Sub Command1 Click() Dim a(3,3)As Integer For i=1 To 3 For j=1 To 3 a(i,j)=i*j+i Next j Next i Sum=0 For i=1 To 3 Sum=Sum+a(i,4-i) Next i Print Sum End Sub 运行程序,单击命令按钮,输出结果是______。

A.20

B.7

C.16

D.17

点击查看答案

第10题

下列程序的运行机结果是【 】。 Private Sub Form_ Click() Dim k As Integer n= 5 m= 1 k= 1 Dom=m

下列程序的运行机结果是【 】。

Private Sub Form_ Click()

Dim k As Integer

n= 5

m= 1

k= 1

Do

m=m+2

k= k+1

Loop While k<=n

Print m

End Sub

点击查看答案
热门考试 全部 >
相关试卷 全部 >
账号:
你好,尊敬的上学吧用户
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改
谢谢您的反馈

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

警告:系统检测到您的账号存在安全风险

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

微信搜一搜
上学吧
点击打开微信
警告:系统检测到您的账号存在安全风险
抱歉,您的账号因涉嫌违反上学吧购买须知被冻结。您可在“上学吧”微信公众号中的“官网服务”-“账号解封申请”申请解封,或联系客服
微信搜一搜
上学吧
点击打开微信