×
×
Correct!
Output "Yes" if
$a = 50;
$b = 10;
@(2) ($a == $b) {
echo "Yes";
} @(4) {
echo "No";
}
$a = 50;
$b = 10;
if ($a == $b) {
echo "Yes";
} else {
echo "No";
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 47 exercises.
Are you sure you want to continue?