Computer Science

What are main error types? Which types are most dangerous and why?

Python Data Handling

28 Likes

Answer

The types of errors are:

  1. Compile Time Errors (Syntax errors and Semantic Errors)
  2. Runtime Errors
  3. Logical Errors

Logical Errors are the most dangerous as they are hardest to prevent, find and fix.

Answered By

15 Likes


Related Questions