Constant casing 
| ID | NAMING-12 |
| Title | Constant variable names shall be SCREAMING_SNAKE_CASED. |
| Priority | Recommended |
| Severity level | 8 |
| Description | Constant variable names shall be written in all-caps with underscores separating the words. |
| Rationale | By applying this naming convention, constant variables are easily identified as such. |
Avoid:
r = 2.86e-23;
base_response = "Hello mr/ms ";
Instead use:
R = 2.86e-23;
BASE_RESPONSE = "Hello mr/ms ";