Answer:
Options A and C
Explanation:
If the employees are a part of the goal formation process, they will know all it entails to achieve the goal, they will know what is at stake if the goal is not achieved, and will be enthusiastic enough to achieve that goal.
If the management assures employees of their support towards the achievement of the employee's goal, the employee will be encouraged to dispense more efforts towards the accomplishment of the goal, knowing fully well that he is strongly supported by the management.
John D. Rockefeller was able to monopolize the oil industry by purchasing several oil companies through the combined vertical and horizontal integration process. The monopoly Rockefeller created it with his company Oil Standar. This tycoon used a trust to obtain total control of the oil industry.
It brings patience and kindness into your relationship.
Answer:
if-else
Explanation:
Based on the information provided within the question it can be said that the best statement to use in this situation is an if-else statement. Like mentioned, this is a statement that outputs two different results depending on whether or not the input meets a predefined set of rules.
For Example: Input is 17
if (hour < 18) {
greeting = "Good day";
} else {
greeting = "Good evening";
}
Output would be "Good evening" in this situation