单选题The research became known as the “Hawthorne effect” becauseA it was the name of the plant where the study was conductedB it was the name suggested by the Harvard researchersC it was the name of the principal experimenterD There were Hawthorne plants gr

题目
单选题
The research became known as the “Hawthorne effect” because
A

it was the name of the plant where the study was conducted

B

it was the name suggested by the Harvard researchers

C

it was the name of the principal experimenter

D

There were Hawthorne plants growing at Western Electric where the study was conducted.


相似考题
更多“单选题The research became known as the “Hawthorne effect” becauseA it was the name of the plant where the study was conductedB it was the name suggested by the Harvard researchersC it was the name of the principal experimenterD There were Hawthorne plants gr”相关问题
  • 第1题:

    哪些是正确的 like 运算表达式?

    A.select * from net_46 where s_name like ’晓’

    B.select * from net_46 where s_name like ’&晓&’

    C.select * from net_46 where s_name like ’$晓$’

    D.select * from net_46 where s_name like ’%晓%’


    正确答案:D

  • 第2题:

    In 1924 America's National Research Council sent two engineers to supervise a series of industrial experiments at a large telephone-parts factory called the Hawthorne Plant near Chicago.It hoped they would learn how stop-floor lighting 1 workers'productivity.Instead,the studies ended 2 giving their name to the"Hawthorne effect",the extremely influential idea that the very 3 to being experimented upon changed subjects'behavior.The idea arose because of the 4 behavior of the women in the Hawthorne plant.According to 5 of the experiments,their hourly output rose when lighting was increased,but also when it was dimmed.It did not 6 what was done in the experiment;7 something was changed,productivity rose.A(n)8 that they were being experimented upon seemed to be 9 to alter workers'behavior 10 itself.After several decades,the same data were 11 to econometric the analysis.Hawthorne experiments has another surprise store 12the descriptions on record,no systematic 13 was found that levels of productivity were related to changes in lighting.It turns out that peculiar way of conducting the experiments may be have let to 14 interpretation of what happed.15,lighting was always changed on a Sunday.When work started again on Monday,output 16 rose compared with the previous Saturday and 17 to rise for the next couple of days.18,a comparison with data for weeks when there was no experimentation showed that output always went up on Monday,workers 19 to be diligent for the first few days of the week in any case,before 20 a plateau and then slackening off.This suggests that the alleged"Hawthorne effect"is hard to pin down.12选?

    A.contrary to
    B.consistent with
    C.parallel with
    D.peculiar to

    答案:A
    解析:
    根据本空之前的句子,“霍桑实验还有另外一个让人意想不到的结果”得知,下面所说的内容应该是与记录中的一些描述相悖,因此需要一个表示转折的连接词。只有A项Contrary to表示“与……相反”,符合文意。

  • 第3题:

    public class Plant {  private String name;  public Plant(String name) { this.name = name; }  public String getName() { return name; }  }  public class Tree extends Plant {  public void growFruit() { }  public void dropLeaves() { }  }  Which is true?() 

    • A、 The code will compile without changes.
    • B、 The code will compile if public Tree() { Plant(); } is added to the Tree class.
    • C、 The code will compile if public Plant() { Tree(); } is added to the Plant class.
    • D、 The code will compile if public Plant() { this(”fern”); } is added to the Plant class.
    • E、 The code will compile if public Plant() { Plant(”fern”); } is added to the Plant class.

    正确答案:D

  • 第4题:

    You need to display the last names of those employees who have the letter "A" as the second character in their names. Which SQL statement displays the required results? ()

    • A、SELECT last_name FROM EMP WHERE last_ name LIKE '_A%';
    • B、SELECT last_name FROM EMP WHERE last name ='*A%'
    • C、SELECT last_name FROM EMP WHERE last name ='_A%';
    • D、SELECT last_name FROM EMP WHERE last name LIKE '*A%'

    正确答案:A

  • 第5题:

    Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2(25) LAST_NAME VARCHAR2(25) HIRE_DATE DATE Which UPDATE statement is valid?()

    • A、UPDATE employees SET first_name = 'John' SET last_name ='Smith' WHERE employee_id = 180;
    • B、UPDATE employees SET first_name = 'John', SET last_name ='Smith' WHERE employee_id = 180;
    • C、UPDATE employees SET first_name = 'John' AND last_name ='Smith' WHERE employee_id = 180;
    • D、UPDATE employees SET first_name = 'John', last_name ='Smith' WHERE employee_id = 180;

    正确答案:D

  • 第6题:

    You need to implement an authentication method on SQL4. The TravelOnline database will be accessed through a Web services application. You need to make the authentication method as secure as possible.What should you do?()

    • A、Create an HTTP endpoint with NTLM authentication, and create a service principal name (SPN).
    • B、Create an HTTP endpoint with digest authentication, and create a service principal name (SPN).
    • C、Create an HTTP endpoint with integrated authentication, and create a service principal name (SPN).
    • D、Create an HTTP endpoint with Kerberos authentication.

    正确答案:C

  • 第7题:

    单选题
    public class Plant {  private String name;  public Plant(String name) { this.name = name; }  public String getName() { return name; }  }  public class Tree extends Plant {  public void growFruit() { }  public void dropLeaves() { }  }  Which is true?()
    A

     The code will compile without changes.

    B

     The code will compile if public Tree() { Plant(); } is added to the Tree class.

    C

     The code will compile if public Plant() { Tree(); } is added to the Plant class.

    D

     The code will compile if public Plant() { this(”fern”); } is added to the Plant class.

    E

     The code will compile if public Plant() { Plant(”fern”); } is added to the Plant class.


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

  • 第8题:

    单选题
    Examine the structure of the EMPLOYEES table: EMPLOYEE_ID NUMBER Primary Key FIRST_NAME VARCHAR2 (25) LAST_NAME VARCHAR2 (25) HIRE_DATE DATE Which UPDATE statement is valid?()
    A

    UPDATE employees SET first_name = 'John' SET last_name = 'Smith' WHERE employee_id = 180;

    B

    UPDATE employees SET first_name = 'John', SET last_name = 'Smoth' WHERE employee_id = 180;

    C

    UPDATE employee SET first_name = 'John' AND last_name = 'Smith' WHERE employee_id = 180;

    D

    UPDATE employee SET first_name = 'John', last_name = 'Smith' WHERE employee_id = 180;


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

  • 第9题:

    单选题
    要查询st_info表中姓"王"且单名的学生情况,可用()命令。
    A

    SELECT * FROM st_info WHERE st_name LIKE ´王%´

    B

    SELECT * FROM st_info WHERE st_name LIKE ´王_´

    C

    SELECT * FROM st_info WHERE st_name=´王%´

    D

    SELECT * FROM st_info WHERE st_name=´王__´


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

  • 第10题:

    单选题
    如果要查询book表中所有书名以“数据库”开头的书籍价格,下列()语句是正确的。
    A

    SELECT price FROM book WHERE book_name=“数据库*”

    B

    SELECT price FROM book WHERE book_name LIKE“数据库*”

    C

    SELECT price FROM book WHERE book_name=“数据库%”

    D

    SELECT price FROM book WHERE book_name LIKE“数据库%”


    正确答案: B
    解析: 谓词LIKE可以用来进行字符串匹配,其一般格式是LIKE‘<匹配串>’,匹配串可以是一个完整的字符串,也可以含有通配符%和_。%代表任意长度字符串,_代表任意单个字符。A选项*是查询表中所有属性的意思,但是格式不对。若LIKE后的匹配串中不含通配符,可以用“=”代替LIKE,故C错误。

  • 第11题:

    单选题
    Which SQL statement accepts user input for the columns to be displayed, the table name, and WHERE condition? ()
    A

    SELECT &1, &2 FROM &3 WHERE last_name = '&8';

    B

    SELECT &1, '&2' FROM &3 WHERE '& last_name = '&8';

    C

    SELECT &1, &2 FROM &3 WHERE last_name = '&8';

    D

    SELECT &1, '&2' FROM EMP WHERE last_name = '&8';


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

  • 第12题:

    查询student数据库中grade表中学生姓名st_name含有“国”的全部学生情况,可用什么命令? (1.0分) [单选.] A. select * from grade where st_name like ‘国’; B. select * from student where st_name like ‘国’; C. select * from grade where st_name= ‘国’; D. select * from grade where st_name like ‘%国%’;
    答案:D

  • 第13题:

    In 1924 America's National Research Council sent two engineers to supervise a series of industrial experiments at a large telephone-parts factory called the Hawthorne Plant near Chicago.It hoped they would learn how stop-floor lighting 1 workers'productivity.Instead,the studies ended 2 giving their name to the"Hawthorne effect",the extremely influential idea that the very 3 to being experimented upon changed subjects'behavior.The idea arose because of the 4 behavior of the women in the Hawthorne plant.According to 5 of the experiments,their hourly output rose when lighting was increased,but also when it was dimmed.It did not 6 what was done in the experiment;7 something was changed,productivity rose.A(n)8 that they were being experimented upon seemed to be 9 to alter workers'behavior 10 itself.After several decades,the same data were 11 to econometric the analysis.Hawthorne experiments has another surprise store 12the descriptions on record,no systematic 13 was found that levels of productivity were related to changes in lighting.It turns out that peculiar way of conducting the experiments may be have let to 14 interpretation of what happed.15,lighting was always changed on a Sunday.When work started again on Monday,output 16 rose compared with the previous Saturday and 17 to rise for the next couple of days.18,a comparison with data for weeks when there was no experimentation showed that output always went up on Monday,workers 19 to be diligent for the first few days of the week in any case,before 20 a plateau and then slackening off.This suggests that the alleged"Hawthorne effect"is hard to pin down.11选?

    A.compared
    B.shown
    C.subjected
    D.conveyed

    答案:C
    解析:
    空格所在的主语是the same data,介词to后面的宾语为:economic analysis;在语义上,二者之间的关系理应为“……数据被用于……分析”。联系上下文可知,the same data指代前面提到的实验数据。因此本题所在句的大致意思是:几十年后,上述实验的数据用于/接受了计量经济学分析。符合句意的只有C选项。

  • 第14题:

    下列哪个语句查出雇员表(employees)里的雇员名字(ename)是‘SMITH’的信息,并且给雇员名字(ename)列定义一个别名Name()。

    • A、select employeesno,ename Name,job from employees where ename=‘SMITH’
    • B、select employeesno,ename ‘Name’,job from employees where ename=SMITH
    • C、select employeesno,ename “Name”,job from employees where ename=‘SMITH’
    • D、select employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’

    正确答案:A

  • 第15题:

    Examine the description of the EMPLOYEES table: EMP_ID NUMBER(4) NOT NULL LAST_NAME VARCHAR2(30) NOT NULL FIRST_NAME VARCHAR2(30) DEPT_ID NUMBER(2) Which statement produces the number of different departments that have employees with last name Smith?()

    • A、SELECT COUNT(*) FROM employees WHERE last_name='Smith';
    • B、SELECT COUNT(dept_id) FROM employees WHERE last_name='Smith';
    • C、SELECT DISTINCT(COUNT(dept_id)) FROM employees WHERE last_name='Smith';
    • D、SELECT COUNT(DISTINCT dept_id) FROM employees WHERE last_name='Smith';
    • E、SELECT UNIQUE(dept_id) FROM employees WHERE last_name='Smith';

    正确答案:D

  • 第16题:

    Which SQL statement accepts user input for the columns to be displayed, the table name, and WHERE condition? ()

    • A、SELECT &1, "&2" FROM &3 WHERE last_name = '&8';
    • B、SELECT &1, '&2' FROM &3 WHERE '& last_name = '&8';
    • C、SELECT &1, &2 FROM &3 WHERE last_name = '&8';
    • D、SELECT &1, '&2' FROM EMP WHERE last_name = '&8';

    正确答案:C

  • 第17题:

    下列哪些SQL语句可以查询出User表中name为张三的记录()。

    • A、SELECT * FROM User WHERE name = ’张三’
    • B、SELECT * FROM User WHERE name = ’张三’ LIMIT 0,1
    • C、SELECT * FROM User WHERE name LIKE ’张三’
    • D、SELECT * FROM User WHERE name LIKE ’%张三%’

    正确答案:A,B,C,D

  • 第18题:

    单选题
    Which of the following is NOT true about the Hawthorne study?
    A

    It was the first documented evidence of the psychological effects on doing work.

    B

    The Hawthorne study continued for five years.

    C

    They found that the workers responded not to the level of lighting but to the fact that other work conditions were not favorable.

    D

    The study changed the focus from economics to a multifaceted approach.


    正确答案: B
    解析:
    本题是是非题。第二段第二句提到选项A的内容、第二段第三句提到选项B的内容、第三段最后一句提到选项D的内容,这三项都是涉及霍桑效应的内容,只有选项C在文中没有提及,因此答案为C。

  • 第19题:

    单选题
    You need to implement an authentication method on SQL4. The TravelOnline database will be accessed through a Web services application. You need to make the authentication method as secure as possible.What should you do?()
    A

    Create an HTTP endpoint with NTLM authentication, and create a service principal name (SPN).

    B

    Create an HTTP endpoint with digest authentication, and create a service principal name (SPN).

    C

    Create an HTTP endpoint with integrated authentication, and create a service principal name (SPN).

    D

    Create an HTTP endpoint with Kerberos authentication.


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

  • 第20题:

    多选题
    下列哪些SQL语句可以查询出User表中name为张三的记录()。
    A

    SELECT * FROM User WHERE name = ’张三’

    B

    SELECT * FROM User WHERE name = ’张三’ LIMIT 0,1

    C

    SELECT * FROM User WHERE name LIKE ’张三’

    D

    SELECT * FROM User WHERE name LIKE ’%张三%’


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

  • 第21题:

    单选题
    You need to display the last names of those employees who have the letter "A" as the second character in their names. Which SQL statement displays the required results? ()
    A

    SELECT last_name FROM EMP WHERE last_ name LIKE '_A%';

    B

    SELECT last_name FROM EMP WHERE last name ='*A%'

    C

    SELECT last_name FROM EMP WHERE last name ='_A%';

    D

    SELECT last_name FROM EMP WHERE last name LIKE '*A%'


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

  • 第22题:

    单选题
    下列哪个语句查出雇员表(employees)里的雇员名字(ename)是‘SMITH’的信息,并且给雇员名字(ename)列定义一个别名Name()。
    A

    select employeesno,ename Name,job from employees where ename=‘SMITH’

    B

    select employeesno,ename ‘Name’,job from employees where ename=SMITH

    C

    select employeesno,ename “Name”,job from employees where ename=‘SMITH’

    D

    select employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’


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

  • 第23题:

    单选题
    Examine the description of the EMPLOYEES table: EMP_ID NUMBER(4) NOT NULL LAST_NAME VARCHAR2(30) NOT NULL FIRST_NAME VARCHAR2(30) DEPT_ID NUMBER(2) Which statement produces the number of different departments that have employees with last name Smith?()
    A

    SELECT COUNT (*) FROM employees WHERE last _name='smith';

    B

    SELECT COUNT (dept_id) FROM employees WHERE last _name='smith';

    C

    SELECT DISTINCT (COUNT (dept_id) FROM employees WHERE last _name='smith';

    D

    SELECT COUNT (DISTINCT dept_id) FROM employees WHERE last _name='smith';

    E

    SELECT UNIQE (dept_id) FROM employees WHERE last _name='smith';


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