Computer Science, asked by krish986, 2 months ago

Write about the syntax of the IF then ELSEIF statement​

Answers

Answered by nandlalpatel113
1

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.

Explanation:

i hope this answer is helpful

Answered by shintrevijaya
1

Answer:

हिंदी में खोजें

तो elseif बयान की वाक्य रचना के बारे में लिखने

Syntax of if...else

The if..else statement evaluates test expression and will execute the body of if only when the test condition is True . If the condition is False , the body of else is executed. Indentation is used to separate the blocks.

Similar questions