Advertisements
Advertisements
प्रश्न
Differentiate if statement and if elseif statement.
अंतर स्पष्ट करें
उत्तर
If statement | if else if else stamen |
If-else if-else statement is a combination of if-else statement. | It consists of a single “if statement”. There is no “else” statement here. |
More than one statement can execute the condition based on user needs | Only one statement can execute |
If the condition is false, there are more alternatives are there | If the condition is false, there is no alternatives |
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Statement which is used to make choice between two options and only option is to be performed is written as ______.
What will be the output of the following PHP code?
<?php
$a = “ ”;
if ($a)
print “all”;
else
print “some”;
?>
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y && 1||1)
print “hi” ;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
if (-100)
print “hi” ;
else
print “how are u”;
?>
Define if statement in PHP
What is if else statement in PHP?
Write the Syntax of the If else statement in PHP.
Compare if and if-else statement.
Explain if else statement in PHP. With an example.