why computers need to be restarted periodically to function correctly

1.00K views

I work at a major tech company and most times I go to IT, they tell us to restart our computer. Why is this a necessary process to maintain a normal operating experience?

In: 38

37 Answers

Anonymous 0 Comments

When code has been running for a long time, it can get out of whack. It could be file handles that aren’t closed, internal data structures that get slightly corrupted, software that talks to hardware (drivers) get out of sync with the hardware. All sorts of possibilities. If this code is running as an application, restarting the application would typically solve it. If the software is the operating system itself, rebooting gives it a clean slate and a known state.

You are viewing 1 out of 37 answers, click here to view all answers.