itgle.com

Passage FourEqual pay for equal work is a phrase used by the American women who feel that they are looked down upon by the society. They say it is not right for women to be paid less than men for the same work.People who hold the opposite opinion(mainly m

题目

Passage Four

Equal pay for equal work is a phrase used by the American women who feel that they are looked down upon by the society. They say it is not right for women to be paid less than men for the same work.

People who hold the opposite opinion(mainly men)have an answer to this. They say that men have more responsibility than women; a married man is expected to earn money to support his family and to make important decisions, and therefore it is right for men to be paid more. There are some people who hold even stronger opinion than this and are against married women working at all. When wives go out to work, they say, the home and children are given no attention to. If women are encouraged by equal pay to take full-time job, they will be unable to do the things they are supposed to. Women are best at making a comfortable home and bringing up children. They will have to give up their present position in society.

"This is exactly what they want to give up, "the women who disagree say. "They want to escape from the limited place which society expects them to fill, and to have freedom to choose between a job and home life, or a mixture of the two. Women have the right of equal pay and equal opportunities."

These women have expressed their opinions forcefully by using the famous saying, "All men are created equal." They point out that the meaning of this sentence is "all human beings are created equal."

48. The women use the phrase "equal pay for equal work" to demand that______.

A. women's work shouldn't be harder than men's

B. men should be paid less than women

C. people doing harder work should earn more

D. men and women should be paid the same amount of money for the same work


相似考题
参考答案和解析
正确答案:A
48.答案为A  此题为词汇题。“同工同酬”的意义解释。
更多“Passage Four Equal pay for equal work is a phrase used by the American women who feel th ”相关问题
  • 第1题:

    假设有String a="A:;char='A';int c=65,选项______是正确的。

    A.if(a==b){System.out.print("Equal")}

    B.if(c==b){System.out.print("Equal")}

    C.if(a==c){System.out.print("Equal")}

    D.以上均不正确


    正确答案:B
    解析: 由于Java是强类型语言,String型变量不能和char、int型变量直接进行对比,所以选项A、C均不正确。但如果char和int型变量在同一个表达式中运算,系统是可以进行自动类型转换的,因此这两个类型的变量之间可以进行比较。由于字母A的ASCII码值为65,所以c=b,故选项B正确。

  • 第2题:

    假设有String a = "A"; char b ='A'; int c=65,下面选项中正确的是( )。

    A.if(a == b) {System. out. print("Equal") }

    B.if(c == b) {System. out. print("Equal") }

    C.if(a == c) {System. out. print ("Equal") }

    D.if(c = b) {System. out. print("Equal") }


    正确答案:B
    解析:由于Java是强类型语言,String不能和char、int类型变量直接进行对比。但如果 char和int两类型在同一个表达式中运算,系统是可以进行自动类型转换的,因此这两个类型的变量可以比较。注意D选项的“=”是赋值运算符而不是相等比较运算符。

  • 第3题:

    Therefore, other things()equal, the number of workers that employers want decreases.

    Ais  

    Bare  

    Cbeing  

    Dhaving


    C

  • 第4题:

    The operation of paralleling two alternators requires the voltages to be _____ and also in phase

    A.zero

    B.eliminated

    C.different

    D.equal


    正确答案:D

  • 第5题:

    前缀列表{ip ip-prefix}的命令格式为 ip ip-prefix ip-prefix-name[index index-number]{permit|deny}ipv4-address mask-length[greater-equal greater-equal-value][less-equal less-equal-value],如果仅指定了greater-equal未指定less-equal,则前缀范围为()

    A.[0,greater-equal-value]

    B.[mask-length.greater-equal-value]

    C.[greater-equal-value,32]

    D.无限制


    参考答案:C

  • 第6题:

    下述语句中,()可以在字符串s1和s2相等时显示"Equal."。

    A.if(!strcmp(s1,s2)) puts(“Equal.”);

    B.if(s1==s2) puts(“Equal.”)

    C.if(*s1==*s2) puts(“Equal.”)

    D.if(strcmp(s1,s2)) puts(“Equal.”);


    B