Answer:
HP laptop computers are produced on a line, with multiple workers completing one or two specific tasks to assemble the laptop. This is an example of <u>job Specialization Negatives </u>which can leave to boredom and dissatisfaction. A solution may be to introduce <u>job rotation </u>where employees shift from one job to another.
Explanation:
One of the major disadvantages of specialization in a job is the repetitive routine which leads to boredom. As the brain does not get actively involved in the same boring routines, so there is more number of chances of mistakes to be made. The employees may also feel not connected to the procedures as they work in just one area.
To avoid these circumstances, the managers of a company should initiate the idea of job rotations. Job rotation simply means shifting the job of an employee for a few days so that he/she can get a better understanding of the job and company.
Answer:
Explanation:
He’s wright SS7G5 The student will locate selected features in
Southwestern Asia (Middle East).
a. Locate on a world and regional political-physical map:
Euphrates River, Jordan River, Tigris River, Suez Canal,
Persian Gulf, Strait of Hormuz, Arabian Sea, Red Sea, and
Gaza Strip.
b. Locate on a world and regional political-physical map the
nations of Afghanistan, Iran, Iraq, Israel, Saudi Arabia, and
Turkey
Answer:
Logic for a program
Explanation:
//Here ind = index
//declare the number
number ind
number sum
number avg
number SIZE = 20
number num[SIZE] = {0,0,0,0,0,0,0,0,0,0
,0,0,0,0,0,0,0,0,0,0}
getReady()
while ind < SIZE
getNumbers()
stop
getReady()
ind = 0
sum = 0
return
getNumbers()
cout<< “Enter a number for position ”, ind
input numbers[ind]
sum = sum + numbers[ind]
ind = ind + 1
return
;
finishUp()
avg = sum/SIZE
ind = 0
while ind < SIZE
output numbers[ind], avg – numbers[index]
ind = ind + 1
return
Modify the program in 2a
number index
number sum
number avg
number actualSize
number SIZE = 10
number number[SIZE] = 0