niusouti.com
参考答案和解析
正确答案:B
解析:原文中play a role in...的意思是“在……中起作用”。根据定位句中的also和bigger可以知道,作者是在拿technology与前一句的globalization作比较,因此两者均是rising wage inequality的原因。故本题答案为B。
更多“Which is the element responsible for rising wage inequality?A.Technology as a more irresistible force.B.Technology and globalization.C.Technology and automation.D.Social class in white and blue-collars.”相关问题
  • 第1题:

    which expression is wrong about learning students' names? ()

    A. It shows students that the teacher is interested in them.

    B. The teacher could ask individual students to assist with demonstrations.

    C. The teacher could ask individual students to assist with equipment in the class.

    D. It shows the teacher is responsible.


    正确答案是:D

  • 第2题:

    ( )According to the passage, which of the following is NOT true?

    A.People who live in cold climates had better paint the walls of their houses white.

    B.Many women like to be in white on their wedding day because it’s the color of purity.

    C.Sometimes colors can affect our feelings and moods.

    D.Wearing green can give us more energy when we are feeling tired.


    正确答案:A

  • 第3题:

    In general, a rising intonation is seen as being more impolite that a falling one.()


    正确答案:错误

  • 第4题:

    A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed.  Which two are true? ()

    • A、 A  element in the echo tag LTD must have the value JSP
    • B、 The echo tag handler must define the setAttribute (String key, String value) method
    • C、 The true element must appear in the echo tag TLD
    • D、 The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.IterationTag interface
    • E、 The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.DynamicAttributes interface

    正确答案:C,E

  • 第5题:

    public class Team extends java.util.LinkedList {  public void addPlayer(Player p) {  add(p);  }  public void compete(Team opponent) { /* more code here */ }  }  class Player { /* more code here */ }  Which two are true?()

    • A、 This code will compile.
    • B、 This code demonstrates proper design of an is-a relationship.
    • C、 This code demonstrates proper design of a has-a relationship.
    • D、 A Java programmer using the Team class could remove Player objects from a Team object.

    正确答案:A,D

  • 第6题:

    Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()

    • A、<class><br/>
    • B、<webapp><br/>
    • C、<servlet><br/>
    • D、<codebase><br/>
    • E、<servlet-class>

    正确答案:E

  • 第7题:

    Which two statements are true about the hashCode method?()

    • A、The hashCode method for a given class can be used to test for object equality and object inequality for that class.
    • B、The hashCode method is used by the java.util.SortedSet collection class to order the elements within that set.
    • C、The hashCode method for a given class can be used to test for object inequality, but NOT objecte quality, for that class.
    • D、The only important characteristic of the values returned by a hashCode method is that the distribution of values must follow a Gaussian distribution.
    • E、The hashCode method is used by the java.util.HashSet collection class to group the elements within that set into hash buckets for swift retrieval.

    正确答案:C,E

  • 第8题:

    You work as an application developer at Cer-Tech.com.You are in the process of creating an application for Cert-Tech.com’s Human Resources department that tracks employee benefits You have to store current employee data without recompiling the application. You elect to store this employee data as a custom section in the application configuration file. The relevant portion of the application configuration file is shown in the following exhibit: What should you do?()

    • A、 Create a custom section handler class that inherits the ConfigurationSection interface
    • B、 Add a section element to the EmployeeSection element of the application configuration file
    • C、 Create a custom section handler class that implements the IConfigurationSectionHandler interface.
    • D、 Add an EmployeeSection element to the configSections element of the application confguration file
    • E、 Create a custom section handler class that implements the IApplicationSettingsProvider interface
    • F、 Add a section element to the configSections element of the application configuration file

    正确答案:A,F

  • 第9题:

    单选题
    What is the theme of the text?
    A

    The causes of low-wage problems.

    B

    The inequality of workers’ pay.

    C

    The improvement of the rates of pay.

    D

    The economy and the rates of pay.


    正确答案: A
    解析:
    主旨大意题。通读全文,根据第一段第一句和第二句“Empowering workers constitutes the first step toward a stronger economy and stronger citizenry. It is a vital step toward overcoming inequality in American society.’’ 可知,增加劳动者的自主权是繁荣经济和增强公民意识的第一步,是战胜美国社会不平等的至关重要的一步,接下来讲不同人种及性别之间工资的差异,所以本文主旨是讲述劳动者工资之间的不平等性,故答案为B项。

  • 第10题:

    多选题
    A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed.  Which two are true? ()
    A

    A  element in the echo tag LTD must have the value JSP

    B

    The echo tag handler must define the setAttribute (String key, String value) method

    C

    The true element must appear in the echo tag TLD

    D

    The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.IterationTag interface

    E

    The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.DynamicAttributes interface


    正确答案: E,B
    解析: 暂无解析

  • 第11题:

    多选题
    class One {  void foo() {}  }  class Two extends One {   //insert method here  }  Which three methods, inserted individually at line 14, will correctly complete class Two?()
    A

    int foo() { /* more code here */ }

    B

    void foo() { /* more code here */ }

    C

    public void foo() { /* more code here */ }

    D

    private void foo() { /* more code here */ }

    E

    protected void foo() { /* more code here */ }


    正确答案: C,D
    解析: 暂无解析

  • 第12题:

    多选题
    Which two are valid values for the  element inside a  element of a web application deployment descriptor?()
    A

    NULL

    B

    SECURE

    C

    INTEGRAL

    D

    ENCRYPTED

    E

    CONFIDENTIAL


    正确答案: C,E
    解析: 暂无解析

  • 第13题:

    Given:Which three methods, inserted individually at line 14, will correctly complete class Two?()

    A.int foo() { /* more code here */ }

    B.void foo() { /* more code here */ }

    C.public void foo() { /* more code here */ }

    D.private void foo() { /* more code here */ }

    E.protected void foo() { /* more code here */ }


    参考答案:B, C, E

  • 第14题:

    Which of the following would be the best title for text? (  )

    A.Rising Cost, A Pain in the Neck
    B.The Irreversible Wage inflation
    C.To Rethink Global Production Plans
    D.As Wages Rise, Time to Leave China

    答案:C
    解析:

  • 第15题:

    Which two are valid values for the  element inside a  element of a web application deployment descriptor?()

    • A、 NULL
    • B、 SECURE
    • C、 INTEGRAL
    • D、 ENCRYPTED
    • E、 CONFIDENTIAL

    正确答案:C,E

  • 第16题:

    class One {  void foo() {}  }  class Two extends One {   //insert method here  }  Which three methods, inserted individually at line 14, will correctly complete class Two?()

    • A、 int foo() { /* more code here */ }
    • B、 void foo() { /* more code here */ }
    • C、 public void foo() { /* more code here */ }
    • D、 private void foo() { /* more code here */ }
    • E、 protected void foo() { /* more code here */ }

    正确答案:B,C,E

  • 第17题:

    Which statements about inheritance are true?()         

    • A、 In Java programming language only allows single inheritance.
    • B、 In Java programming language allows a class to implement only one interface.
    • C、 In Java programming language a class cannot extend a class and implement a interface together.
    • D、 In Java programming language single inheritance makes code more reliable.

    正确答案:A,D

  • 第18题:

    Given:   10. class One {   11. void foo() { }   12. }   13. class Two extends One {   14. //insert method here   15. }   Which three methods, inserted individually at line 14, will correctly complete class Two?()

    • A、 public void foo() { /* more code here */ }
    • B、 private void foo() { /* more code here */ }
    • C、 protected void foo() { /* more code here */ }
    • D、 int foo() { /* more code here */ }  
    • E、 void foo() { /* more code here */ }

    正确答案:A,C,E

  • 第19题:

    You create a server control that inherits from WebControl. You need to enable the server control to emit markup for a new kind of mobile device. You must not alter the code in the server controls. Which two actions should you perform?()

    • A、Create a class that inherits HtmlTextWriter and that can emit the new markup.
    • B、Create a class that inherits StreamWriter and that can emit the new markup.
    • C、Reference the class in the <capabilities> element of the new device's browser definition file.
    • D、Reference the class in the <controlAdapters> element of the new device's browser definition file.

    正确答案:A,D

  • 第20题:

    单选题
    Pay more attention to the rising and falling of ().
    A

    tide

    B

    water

    C

    sea

    D

    wave


    正确答案: C
    解析: 暂无解析

  • 第21题:

    多选题
    Given: Which three methods, inserted individually at line 14, will correctly complete class Two?()
    A

    int foo() { /* more code here */ }

    B

    void foo() { /* more code here */ }

    C

    public void foo() { /* more code here */ }

    D

    private void foo() { /* more code here */ }

    E

    protected void foo() { /* more code here */ }


    正确答案: D,B
    解析: 暂无解析

  • 第22题:

    多选题
    Which two statements are true about the hashCode method?()
    A

    The hashCode method for a given class can be used to test for object equality and object inequality for that class.

    B

    The hashCode method is used by the java.util.SortedSet collection class to order the elements within that set.

    C

    The hashCode method for a given class can be used to test for object inequality, but NOT objecte quality, for that class.

    D

    The only important characteristic of the values returned by a hashCode method is that the distribution of values must follow a Gaussian distribution.

    E

    The hashCode method is used by the java.util.HashSet collection class to group the elements within that set into hash buckets for swift retrieval.


    正确答案: E,D
    解析: 暂无解析

  • 第23题:

    单选题
    Which element of the web application deployment descriptor defines the servlet class associated with aservlet instance?()
    A

    <class><br/>

    B

    <webapp><br/>

    C

    <servlet><br/>

    D

    <codebase><br/>

    E

    <servlet-class>


    正确答案: C
    解析: 暂无解析