answersLogoWhite

0


Best Answer

Yes. If your purpose is to analyze a job to determine how it should be performed safely, you would not want to observe an inexperienced worker who may not know how to perform the job well or safely. An experienced worker would more likely perform the job well and make perform fewer unsafe acts while doing so.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: When performing a jsa you should select an experienced employee to observe?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What employee qualifications are often used to select new supervisors?

The most skilled and experienced employees are often selected as supervisors.


How do you fetch second highest salary from table?

select top 1 * from EMPLOYEE where SALARY < (select MAX SALARY FROM EMPLOYEE) ORDER BY SALARY DESC


What is SCONE in security?

select, conceal, observe, non payment, exit


What are the goals of employee selection?

To select the best candidate for the task


How do you get the highest pay employee in an oracle database?

Select employee, max(salary) From employee Group by employee Order by one DESC The employee with the max salary will be the first one reported. Another way would be to use a analytical rank function.


How do you select ski boots?

Find a good, experienced boot fitter you can trust at a reputable shop.


How can you get the 3rd highest salary in SQL from employee database?

select * from ( select eno, ename, sal, rank() over(order by sal desc) rnk ) where rnk = 3


What basic clause in an SQL statement is used to retrieve rows and columns from tables?

The SELECT clause is used to retrieve rows and columns from tables. Ex: Select * from employee


Create view in SQL?

create view vw_active_employee as select * from employee where status = 'Active' after creating the view, view can be used as a table to see active employee. e.g. select * from vw_active_employee Basically we save sql as a database object, so that we can use that in future as a virtual table.


How do you fetch the data from already stored database by using php code?

Use the Select statement. As in <?php // If you want all of the data $select = mysql_query("SELECT * FROM table_name"); // where table_name is name of your table // If you want selected data $select = mysql_query("SELECT id, username, password FROM table_name"); // If you want a particular data as in salary of employee named John from table employees $select = mysql_query("SELECT salary FROM employee WHERE Name='john'"); // Remember This only selects the data. Now the fetch part while($fetch = mysql_fetch_array($select)) { // replace the column_name with name of the column fields in database echo $fetch['column_name]; echo $fetch['column_name']; } ?>


Can you use SQL to pull data from Oracle?

yes.... example: select *from employee; dml command in sql language


You randomly select 500 students and observe that 85 of them smoke Estimate the probability that a randomly selected student smokes?

85/500 = 17%