Understanding and Mastering Coding Errors
Understanding and Mastering Coding Errors
Coding errors are an inevitable part of the software development journey. Whether you're a novice programmer or a seasoned developer, encountering errors is something you can count on. But rather than seeing them as roadblocks, errors can be powerful learning tools that help you write better code.
There are 3 main types of errors.
1.Syntax Errors
2.Logical Errors
3.Runtime Errors
1.Syntax Errors:-
Syntax errors occur when the code violates the rules of the programming language. These errors are usually detected by the compiler during the initial stages of program execution. Common examples include missing semicolons, mismatched parentheses, or misspelled keywords.
Above code, semicolon is missed. That is a syntax error. If there any syntax error, we cant get output of any code.
Correct code is bellow.
2.Logical Errors
Logical errors occur when the code runs without crashing but produces incorrect results. These errors stem from flaws in the algorithm or logic used to solve a problem. Logical errors can be particularly challenging to detect and fix because the code appears to work correctly.
Above code, we got output as 11. But Correct output is 16. In that code has logical error. Normally in maths we use BODMAS theory. We need to use that theory in coding also.
BODMAS stands for B - Brackets, O - Order of powers, D - Division, M - Multiplication, A - Addition, and S - Subtraction.
This is the correct code for it.
3.Runtime Errors:-
Runtime errors happen while the program is running. These errors occur due to illegal operations like dividing by zero, accessing an array out of bounds, or using a null reference. Runtime errors often cause programs to crash or produce unexpected results.
Understanding runtime errors is crucial for writing robust and reliable software.
Comments
Post a Comment