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);

Less Than 0
Not True
None of the Mentioned
No Output

ANSWER DOWNLOAD EXAMIANS APP