Glossary of Terms

Error Types

Keyword Definition
Arithmetic Error An error that occurs during arithmetic operations, such as division by zero or overflow/underflow.
File Not Found An error that occurs when a program tries to access a file that does not exist or cannot be found.
Filenotfounderror An error that occurs when a file that is being accessed is not found.
Indentationerror An error that occurs when there are issues with the indentation of the code.
Index Out Of Bounds An error that occurs when attempting to access an element outside the bounds of an array or collection.
Indexerror An error that occurs when trying to access an index that is out of range for a sequence.
Keyerror An error that occurs when trying to access a key that does not exist in a dictionary.
Logic Error An error in the logic or algorithm of a program that causes incorrect results or unexpected behavior.
Nameerror An error that occurs when a variable or function is used without being defined.
Null Pointer Exception An error that occurs when a program tries to access a null object or null reference.
Overflow Error An error that occurs when a mathematical operation produces a result that is too large to be represented within the available memory or data type.
Runtime Error An error that occurs during the execution of a program, leading to abnormal termination or unexpected behavior.
Syntax Error An error in the syntax of a programming language that prevents the code from being parsed and executed.
Type Error An error that occurs when an operation is performed on an object of an inappropriate type.
Typeerror An error that occurs when an operation or function is applied to an object of inappropriate type.
Underflow Error An error that occurs when a mathematical operation produces a result that is too small to be represented within the available memory or data type.
Valueerror An error that occurs when a function receives an argument of the correct type but with an inappropriate value.
Zerodivisionerror An error that occurs when trying to divide a number by zero.