What is the difference between operational and programmer errors?
- A Operational errors are expected runtime problems to handle; programmer errors are bugs that should crash the process
- B Operational errors are bugs; programmer errors are recoverable
- C They are the same
- D Programmer errors only occur at compile time
Answer
Operational errors are expected runtime problems to handle; programmer errors are bugs that should crash the process
A failed network call is operational and should be retried. A TypeError is a bug, and continuing after one risks corrupting data.





