PHP Functions
What will be the output of the following PHP code ?
function mine($m)
{if ($m < 0)
echo "less than 0";
if ($ >= 0)
echo "Not True";
}
mine(0);

Not True
Less Than 0
None of the Mentioned
No Output

ANSWER DOWNLOAD EXAMIANS APP

PHP Functions
What will be the output of the following PHP code?
$title = "O'malley wins the heavyweight championship!";
echo ucwords($title);

o’malley wins the heavyweight championship!
O’malley Wins The Heavyweight Championship!
O’Malley Wins The Heavyweight Championship!
O’Malley wins the heavyweight championship!

ANSWER DOWNLOAD EXAMIANS APP