Essentials

If/Else Statements

There are cases where we need to execute a block of statements only when a particular condition is met. This is called decision making, since we are executing a certain code after making a decision in the program logic. To make decisions through code, we use a concept called if and else statements Syntax They …

If/Else Statements Read More »

Scroll to Top