Advertisements
Advertisements
प्रश्न
Differentiate Switch and if else statement.
अंतर स्पष्ट करें
उत्तर
Switch statement | if-else statement |
Switch statement uses single expression for multiple choices. | the if-else statement uses multiple statements for multiple choices. |
Switch statement test only for equality. | if-else statement test for equality as well as for logical expression. |
Switch statement execute one case after another till a break statement is appeared or the end of switch statement is reached. | Either if statement will be executed or else statement is executed. |
shaalaa.com
Php Conditional Statements
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
What will be the output of the following PHP code?
<?php
$x;
if ($x)
print “hi” ;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x = 0;
if ($x++)
print “hi”;
else
print “how are u”;
?>
What will be the output of the following PHP code?
<?php
$x;
if ($x == 0)
print “hi” ;
else
print “how are u”;
print “hello”
?>
What will be the output of the following PHP code?
<?php
$a = “”;
if ($a)
print “all”;
if ______
else
print “some”;
?>
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y + $y != 3)
print “hi” ;
else
print “how are u”;
?>
Define Conditional Statements in PHP.
List out Conditional Statements in PHP.
Write the features Conditional Statements in PHP.
Explain the Function of Conditional Statements in PHP.
Explain the working of Conditional Statements in PHP?