Advertisements
Advertisements
प्रश्न
Compare if and if-else statement.
फरक स्पष्ट करा
उत्तर
If Statement | If else Statement |
if statement checks a condition and executes a set of statements when this condition is true, it does not do anything when the condition is false. | if-else statement checks a condition and executes a set of statements when this condition is true, it executes another set of statements when the condition is false. |
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.
Differentiate if statement and if elseif statement.
Explain if else statement in PHP. With an example.