PHP - Conditional Statements
What will be the output of this PHP code?
$a = 5;
if ($a > 3) {
echo 'Yes';
} else {
echo 'No';
}
$a = 5;
if ($a > 3) {
echo 'Yes';
} else {
echo 'No';
}
15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions