Continuing advances in technology and automation will be eliminating repetitive work in the offices of the future.
Computer technology has had a tremendous impact upon workers. In some instances, the introduction of computers has improved member working conditions, but, in others, new technology has produced several detrimental effects.
Explanation:
- One of the key trends to emerge was that automation, smart machines and artificial intelligence will conduct repetitive work, replacing the need for people to complete these tasks.
- Instead of worrying about job losses, executives should be helping to reduce jobs in which AI and machine learning take over boring tasks, while humans spend more time with higher-level tasks.
Here are three ways eliminating repetitive work can boost productivity:
- <u> Reduce Dependency on Email and Spreadsheets :</u> Automation tools such as mobile applications, customized portals and project management tools eliminate the time spent checking and responding to emails and updating spreadsheets to reflect work progress. With automated tools, managers and their teams can post progress or project information on an integrated mobile app.
- <u>Reduce Mistakes and Injuries </u>: The possibility of human errors, which take more time to correct, is virtually eliminated when tasks are automated. Leaving the monotonous tasks to machines reduces the chance of injuries and allows workers to keep working on more strategic tasks.
- <u> Free Employees Time for High-Level Skills</u> : Many of the employees who spend their time undertaking repetitive tasks could actually be better utilized on more complex tasks.
There are a variety of illnesses that may be caused by repetitive computer work :
-
Tendonitis : pain and swelling of tendons at the junction between the tendon and its muscle;
- Epicondylitis: pain and swelling where the tendons and bone join around the elbow joint, etc
Answer:
Explanation:
Run: Choose Run when you only need the download once. Perhaps it’s a song or video you only plan to listen to or watch once. Another scenario might be an installation program that, when run, installs software on your machine in other, permanent locations. Once installed, you probably don’t need the installer again.
Save: When you want to keep whatever it is you’ve downloaded, choose Save. You can still run it, or whatever else you’d like to do with it, but you’ll need to do that yourself. You’ll also want to decide where, on your computer, to keep the file.
<em>Save and run: Use this option when you want to do both: save the file to a location you control, and then immediately run it.
</em>
<em />
Technology affects people's lives differently.
Some are bad and some are good.
But for me, technology gives us a chance to collaborate and connect even if we are miles away.
People are opening their mind to new kind of knowledge that can help us improve and grow.
xxxxxxxxxxxxxAnswer:
xxxxxxxxxxxxxxxExplanation:
Answer:
import random
print("Hello! I have a random number from 1 to 100! It is your job to try and guess it!")
number = random.randint(1,101)
guess = int(input("start to guess: "))
num_guesses = 1
while guess != number:
if guess > number:
print("lower")
guess = int(input("try again: "))
num_guesses +=1
elif guess < number:
print ("higher")
guess = int(input("start to guess: "))
num_guesses +=1
print("congrats it took you", num_guesses, "tries")
Explanation: