PHP Functions
What will be the output of the following PHP code ?
function calc($num1, $num2)
{
$total = $num1 * $num2;
return $total;
}
$result = calc(42, 0);
echo $result;

Error
0
84
42

ANSWER DOWNLOAD EXAMIANS APP