单选题The research became known as the “Hawthorne effect” becauseAit was the name of the plant where the study was conductedBit was the name suggested by the Harvard researchersCit was the name of the principal experimenterDThere were Hawthorne plants growing at Western Electric where the study was conducted.

单选题
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.


参考解析

解析:
本题是细节题。第二段第一句提到:因为这一实验是在西电气公司的霍桑工厂进行的,所以这一现象逐渐被人们称之为“霍桑效应”。所以A为答案。

相关考题:

下列哪个语句查出雇员表(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=SMITHC.select employeesno,ename “Name”,job from employees where ename=‘SMITH’D.select employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’

●已知有关系模式R(S_NO,S_NAME,AGE),其中S-NO表示学生的学号,类型为Char[8],前4位表示入学年份。查询所有2005年入学的学生姓名(S_NAME),SQL语句是 (24) 。(24) A.SELECT S_NAME FROM R WHERE S_NO=′2005%′B.SELECT S_NAME FROM R WHERE S_NO LIKE ′2005%′C.SELECT S_NAME FROM R WHERE S_NO=′2005%′D.SELECT S_NAME FROM R WHERE S_NO ′2005%′

查找条件为:姓名不是NULL的记录( )A.WHERE NAME ! NULLB.WHERE NAME NOT NULLC.WHERE NAME IS NOT NULLD.WHERE NAME!=NULL

以下删除记录正确的( )A.delete from emp where name='dony';B.Delete * from emp where name='dony';C.Drop from emp where name='dony';D.Drop * from emp where name='dony';

哪些是正确的 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 ’%晓%’

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.comparedB.shownC.subjectedD.conveyed

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 toB.consistent withC.parallel withD.peculiar to

下列哪个语句查出雇员表(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=SMITHC、select employeesno,ename “Name”,job from employees where ename=‘SMITH’D、select employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’

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.

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';

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%'

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';

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;

下列哪些SQL语句可以查询出User表中name为张三的记录()。A、SELECT * FROM User WHERE name = ’张三’B、SELECT * FROM User WHERE name = ’张三’ LIMIT 0,1C、SELECT * FROM User WHERE name LIKE ’张三’D、SELECT * FROM User WHERE name LIKE ’%张三%’

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.

单选题Which of the following is NOT true about the Hawthorne study?AIt was the first documented evidence of the psychological effects on doing work.BThe Hawthorne study continued for five years.CThey found that the workers responded not to the level of lighting but to the fact that other work conditions were not favorable.DThe study changed the focus from economics to a multifaceted approach.

单选题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.

单选题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?()ACreate an HTTP endpoint with NTLM authentication, and create a service principal name (SPN).BCreate an HTTP endpoint with digest authentication, and create a service principal name (SPN).CCreate an HTTP endpoint with integrated authentication, and create a service principal name (SPN).DCreate an HTTP endpoint with Kerberos authentication.

单选题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?()AUPDATE employees SET first_name = 'John' SET last_name = 'Smith' WHERE employee_id = 180;BUPDATE employees SET first_name = 'John', SET last_name = 'Smoth' WHERE employee_id = 180;CUPDATE employee SET first_name = 'John' AND last_name = 'Smith' WHERE employee_id = 180;DUPDATE employee SET first_name = 'John', last_name = 'Smith' WHERE employee_id = 180;

多选题下列哪些SQL语句可以查询出User表中name为张三的记录()。ASELECT * FROM User WHERE name = ’张三’BSELECT * FROM User WHERE name = ’张三’ LIMIT 0,1CSELECT * FROM User WHERE name LIKE ’张三’DSELECT * FROM User WHERE name LIKE ’%张三%’

单选题要查询st_info表中姓"王"且单名的学生情况,可用()命令。ASELECT * FROM st_info WHERE st_name LIKE ´王%´BSELECT * FROM st_info WHERE st_name LIKE ´王_´CSELECT * FROM st_info WHERE st_name=´王%´DSELECT * FROM st_info WHERE st_name=´王__´

单选题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? ()ASELECT last_name FROM EMP WHERE last_ name LIKE '_A%';BSELECT last_name FROM EMP WHERE last name ='*A%'CSELECT last_name FROM EMP WHERE last name ='_A%';DSELECT last_name FROM EMP WHERE last name LIKE '*A%'

单选题如果要查询book表中所有书名以“数据库”开头的书籍价格,下列()语句是正确的。ASELECT price FROM book WHERE book_name=“数据库*”BSELECT price FROM book WHERE book_name LIKE“数据库*”CSELECT price FROM book WHERE book_name=“数据库%”DSELECT price FROM book WHERE book_name LIKE“数据库%”

单选题下列哪个语句查出雇员表(employees)里的雇员名字(ename)是‘SMITH’的信息,并且给雇员名字(ename)列定义一个别名Name()。Aselect employeesno,ename Name,job from employees where ename=‘SMITH’Bselect employeesno,ename ‘Name’,job from employees where ename=SMITHCselect employeesno,ename “Name”,job from employees where ename=‘SMITH’Dselect employeesno,ename ‘Name’,job frome mployees wheree name=‘SMITH’

单选题Which SQL statement accepts user input for the columns to be displayed, the table name, and WHERE condition? ()ASELECT 1, 2 FROM 3 WHERE last_name = '8';BSELECT 1, '2' FROM 3 WHERE ' last_name = '8';CSELECT 1, 2 FROM 3 WHERE last_name = '8';DSELECT 1, '2' FROM EMP WHERE last_name = '8';

单选题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?()ASELECT COUNT (*) FROM employees WHERE last _name='smith';BSELECT COUNT (dept_id) FROM employees WHERE last _name='smith';CSELECT DISTINCT (COUNT (dept_id) FROM employees WHERE last _name='smith';DSELECT COUNT (DISTINCT dept_id) FROM employees WHERE last _name='smith';ESELECT UNIQE (dept_id) FROM employees WHERE last _name='smith';

查询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 ‘%国%’;