Glossary
B
Bugs
Criticality: 3
Errors or flaws in a computer program that cause it to produce incorrect or unexpected results, or to behave in unintended ways.
Example:
If your game character keeps falling through the floor, that's a bug that needs fixing!
S
Syntax Errors
Criticality: 3
Mistakes in the code that violate the grammatical rules of the programming language, preventing the program from being compiled or interpreted correctly.
Example:
Forgetting a semicolon at the end of a line in JavaScript or misindenting a block of code in Python would cause a syntax error.
