首页 > 职业资格考试
题目内容 (请给出正确答案)
[主观题]

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.

查看答案
答案
收藏
如果结果不匹配,请 联系老师 获取答案
您可能会需要:
您的账号:,可能还需要:
您的账号:
发送账号密码至手机
发送
安装优题宝APP,拍照搜题省时又省心!
更多“The rise of "temp" work has fu…”相关的问题
第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题
表达式temp=random()*50;[temp],其中 ()是一个临时变量。

A.random()

B.temp

C.[temp]

D.50

点击查看答案
第3题
Linux终端执行temp=world;echo hello $temp 上述命令执行的结果为()

A.]. helloworld

B.]. hello$temp

C.]. hello world

D.[C]. hello

点击查看答案
第4题
对下面错误描述不正确的是()。ORA-1652:unable to extend temp segment by 128 in tablespace TEMP

A.temp表空间为数据库当前默认的临时表空间

B.temp表空间已经没有空闲空间分配

C.temp表空间可以被循环使用无需处理

D.需要对temp表空间增加数据文件或者增大temp表空间现有的数据文件来解决该问题

点击查看答案
第5题
下列选项中,属于端口输入操作的是__()

A.chartemp;P2=temp

B.P2=0XAA

C.chartemp;temp=P2

D.sbitP1_1=P1^1;P1_1=1

点击查看答案
第6题
设当前工作目录(文件夹)中有一个表文件XX.DBF,该表含有多条记录。下列SELECT-SQL命令中,语法错误的是()。
设当前工作目录(文件夹)中有一个表文件XX.DBF,该表含有多条记录。下列SELECT-SQL命令中,语法错误的是()。

A. SELECT * FROM XX INTO ARRAY temp

B. SELECT * FROM XX INTO CURSOR temp

C. SELECT * FROM XX INTO TABLE temp

D. SELECT * FROM XX INTO FILE temp

点击查看答案
第7题
现在需要在根目录下找所有的名字为temp的文件,然后删除,删除时不需要提示,请问可如何实现()。

A.find/-nametemprm*

B.rm-rf/*temp*

C.find/-nametemp–execrm{}/;

D.find/-nametemp–execrm

点击查看答案
第8题
D35的报警英文是什么()

A.Water flow

B.Motor temp

C.Motor power

D.mergency Stop

点击查看答案
第9题
[root@localhost/~]/#mkdirtemp,[root@localhost/~]/#cp*.otemp表示的是()。

A.将*.0的文件全部复制到temp

B.将*.0的文件全部从temp中删除

C.将*.0的文件全部从mkdir中删除

D.将*.0的文件全部复制到mkdir

点击查看答案
第10题
Tomcat的temp文件夹用于存放Tomcat的配置模板()
点击查看答案
第11题
被用户删除的文件一般存放在 ______ 里。

A.回收站

B.Windows目录

C.Temp目录

D.注册表

点击查看答案
退出 登录/注册
发送账号至手机
密码将被重置
获取验证码
发送
温馨提示
该问题答案仅针对搜题卡用户开放,请点击购买搜题卡。
马上购买搜题卡
我已购买搜题卡, 登录账号 继续查看答案
重置密码
确认修改