Decision Making (if, if else)
In programming, there may arise a situation where we may need to run a block of code among multiple alternatives.
For example,
assigning grades A, B, or C based on the marks obtained by the student.
In such situations, we use the if statement to create programs that can make decisions.