Answer:
Respect.
Explanation:
Execution of a project according to the intended plan is very crucial to ensure the success of the project. In order to effectively execute the plan, it becomes crucial to display 'mutual respect and decency' between all the participants as it not only helps in preventing any kind of dispute or conflict in the team but also keeps the entire team focused and motivated to give their best. It develops a positive work environment by accepting each other's individual differences and going together as a team instead of a group of individuals.
Answer:
C. Minimizes hiring, layoff, and unemployment costs
Explanation:
The employment-stability policy is a policy that aims to provide security and stability to employees of a company or industry. For workers, this is good because it creates greater security for planning the future of their lives. For businesses, it all depends. If workers keep output at a good level, firms will gain by reducing their spending on hiring research and layoffs.
There is a discussion among economists about the effectiveness of this policy for the economy. Some find it beneficial and others find it can slow down the productivity of workers and the economy as a whole.
Answer:
The query may still be specified in SQL by using a nested query as follows (not all
implementations may support this type of query):
SELECT DNAME, COUNT (*)
FROM DEPARTMENT, EMPLOYEE
WHERE DNUMBER=DNO AND SEX='M' AND DNO IN ( SELECT DNO
FROM EMPLOYEE
GROUP BY DNO
HAVING AVG (SALARY) > 30000 )
GROUP BY DNAME;
Explanation: