Operators
* Operators are like manipulators.
* It is a special term given to the symbols which can be used to perform
different types of operations.
* There are different types of operators:
-> Arithematic operators
-> Logical operators
-> Bitwise operators, etc.
Control Structures
* These are fundamental components which are used to control the
flow of the program depending on different conditions.
* There are two types of control structures:
-> If-else
-> switch
if-else
* if-else are type of control structures which are used to control the
flow of the program.
* The syntax for if-else is:
* Working
-> When the condition evaluates to "True", the code block under
"if" executes, otherwise the code block under "else" executes.