How is IF statement used in a flowchart?
Answers
Answered by
0
The conditional statements if, if-else, and switch allow us to choose which statement will be executed next. Each choice or decision is based on the value of a boolean expression (also called the condition). If we have code that we sometimes want to execute and sometimes we want to skip we can use the if statement.
Similar questions