PHP - Operators
What will be the output of this PHP code?
$a = 5; $b = 10; $result = $a > $b ? 'Yes' : 'No'; echo $result;
$a = 5; $b = 10; $result = $a > $b ? 'Yes' : 'No'; echo $result;
$a > $b15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions