In an if statement,either the code associated with the if part executes or the code associated with else part executes true or false
Answers
Answered by
3
In an if statement, either the code associated with the if part executes or the code associated with else part executes - True
Answered by
6
Yes. It's absolutely true.
In an if statement,either the code associated with the if part executes or the else parts executes. It depends on the conditions given. If the conditions given in the if part is true then if block will execute and if the condition is false then else block will execute.
Similar questions