Computer Science, asked by dipanshee9443, 10 months ago

Explain if else control structure with its significance

Answers

Answered by ItsSpiderman44
2

Answer:

Syntax of if else statement: If condition returns true then the statements inside the body of “if” are executed and the statements inside body of “else” are skipped. If condition returns false then the statements inside the body of “if” are skipped and the statements in “else” are executed.

Similar questions