重要提示:请勿将账号共享给其他人使用,违者账号将被封禁!
查看《购买须知》>>>
首页 > 职业资格考试
网友您好,请在下方输入框内输入要搜索的题目:
搜题
拍照、语音搜题,请扫码下载APP
扫一扫 下载APP
题目内容 (请给出正确答案)
[主观题]

The rise of "temp" work has further magnified the decreasing fights and alienation of the

worker. It is common corporate practice to phase out full-time employees and hire temporary workers to take on more workload in less time. When facing a pressing deadline, a corporation may pay $15~$20 per hour for a temp worker, but the temp worker will only see $7 or $8 of that money. The rest goes to temp agency, which is usually a corporate chain, such as Kelly Services, that blatantly makes its profits off other people's labor. This increases profits of the corporations because they can increase a workload, get rid of the employee when they're finished, and not worry about paying benefits or unemployment for that employee. I have had to work with temps a few times in my current position, and the workers only want one thing - a full-time job with benefits. We really wanted to hire one temp I was working with, but we could not offer her a full-time job because it would have been a breach in our contract with the temp agency that employed her. To hire a temp full-time, we would have had to pay the agency over a thousand dollars. Through this practice and policy, the temp agency locks its temporary workers into a horrible new form. of servitude form. which the worker cannot break free.

Furthermore, corporate powers push workers to take on bigger workloads, work longer hours, and accept less benefits by instilling a paranoia in their workforce. The capitalist bosses assume dishonesty, disloyalty, and laziness amongst workers, and they breed a sense of guilt and fear through their assumptions. Where guilt doesn't seep in, bitterness, anger, and depression take over, the highest priorities of Big Business are to increase profits and limit liabilities. Personal relations and human needs are last on their list of priorities. So what we see is a huge mass of people who are alienated, disempowered, overworked, mentally and physically ill and who spend the vast majority of their time and energy on their basic survival. They are denied a chance to really "love", because they are forced to make profits for the capitalists in power.

Which of the following can NOT be listed as a reason for corporations' hiring temporary workers and phasing out full-time employees?

A.Corporations intend to leave more workload to temporary workers.

B.Temp workers are generally well-trained and can achieve high efficiency.

C.Corporations can reduce their production cost by employing temp workers.

D.Corporations can benefit a great deal from keeping a small full-time work force.

答案
查看答案
更多“The rise of "temp" work has further magnified the decreasing fights and alienation of the”相关的问题

第1题

试题二(共 15分) 阅读以下说明和C函数,将应填入 (n) 处的字句写在答题纸的对应栏内。 【说明 1】 函

试题二(共 15分)

阅读以下说明和C函数,将应填入 (n) 处的字句写在答题纸的对应栏内。

【说明 1】

函数Counter(int n, int w[])的功能是计算整数n的二进制表示形式中1的个数,同时用数组w记录该二进制数中1所在位置的权。

例如,十进制数22的二进制表示为10110。对于该二进制数,1的个数为3,在w[0]中存入2(即 )、w[1]中存入4(即 )、w[2]中存入16(即 )。

1

2 2

2 4

2

【C函数 1】

int Counter(int n, int w[])

{ int i = 0, k = 1;

while ((1) ) {

if (n % 2) w[i++] = k;

n = n / 2; (2) ;

}

return i;

}

【说明 2】

函数 Smove(int A[], int n)的功能是将数组中所有的奇数都放到所有偶数之前。其过程为:设置数组元素下标索引i(初值为0)和j(初值为n-1),从数组的两端开始检查元素的奇偶性。若 A[i]、A[j]都是奇数,则从前往后找出一个偶数,再与 A[j]进行交换;若 A[i]、A[j]都是偶数,则从后往前找出一个奇数,再与A[i]进行交换;若 A[i]是偶数而A[j]是奇数,则交换两者,直到将所有的奇数都排在所有偶数之前为止。

【C函数 2】

void Smove(int A[], int n)

{ int temp, i = 0, j = n-1;

if (n < 2 ) return;

while (i < j ) {

if (A[i] % 2 == 1 && A[j] % 2 == 1 ) { (3) ; }

else if (A[i] % 2 == 0 && A[j] % 2 == 0 ) { (4) ; }

else {

if ((5) ) {

temp = A[i]; A[i] = A[j]; A[j] = temp;

}

i++, j--;

}

}

}

点击查看答案

第2题

听力原文:W: Well, tonight we have Andrew Green in our studio to talk about music. Andrew i
s a great guitarist and has his own band. So, Andrew, welcome.

M: Thanks a lot. My pleasure to be here tonight.

W: Now, Andrew, perhaps you could tell us something about the future trends for the global music industry?

M: Sure. Well, from my perspective as a musician, [19] I can see a dramatic increase in the popularity of Latin music, even now. If this trend continues, I imagine the popularity of Salsa dancing will also rise dramatically. This may result in a slight decrease in the popularity of other types of music.

W: What do you think of the sudden drop in interest in classical music?

M: I think this trend has been in the works for quite some time. As more and more varieties of music become available to consumers, the classic standards may suffer in the popularity contest. [20] I think the drop in interest of classical music hasn't been sudden at all, it's been slow and steady for many years now.

W: Is there any type of music that is consistently popular with most people?

M: If you look at the numbers, rock and roll music has remained a steady constant through the years. I expect the popularity of rock and roll will stay the same in the coming years.

W: It's said that [21] rock music might make one livelier and happier. What do you think of it?

M: That's tree. Research suggests that music can influence a person's feelings and character. [21] There's clear evidence that people who listen lively music are lively people.

(20)

A.Salsa dancing.

B.Classical music.

C.Rock and roll.

D.Latin music.

点击查看答案

第3题

Linux终端执行temp=world;echo hello $temp 上述命令执行的结果为()

A.]. helloworld

B.]. hello$temp

C.]. hello world

D.[C]. hello

点击查看答案

第4题

被用户删除的文件一般存放在Temp目录里。()
点击查看答案

第5题

建立表之间临时关联的命令是()

A.REATE RELATIoN TO…

B.SET RELATION TO…

C.TEMP RELATlON TO…

D.REATE TEMP TO

点击查看答案

第6题

D35的报警英文是什么()

A.Water flow

B.Motor temp

C.Motor power

D.mergency Stop

点击查看答案

第7题

()is simply a valve that measures the temp erature of the coolant.

A.Oil pump

B.Pressure cap

C.Thermostat

D.Radiator

点击查看答案

第8题

下列表空间中,哪些不是数据库中必须存在的?()

A.ROLLBACK

B.TEMP

C.SYSTEM

D.TOOLS

点击查看答案

第9题

被用户删除的文件一般存放在 ______ 里。

A.回收站

B.Windows目录

C.Temp目录

D.注册表

点击查看答案
下载APP
关注公众号
TOP
重置密码
账号:
旧密码:
新密码:
确认密码:
确认修改
购买搜题卡查看答案 购买前请仔细阅读《购买须知》
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《服务协议》《购买须知》
立即支付 系统将自动为您注册账号
已付款,但不能查看答案,请点这里登录即可>>>
请使用微信扫码支付(元)

订单号:

遇到问题请联系在线客服

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