Examveda
Examveda

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

A. Error

B. 0

C. 42

D. 84

Answer: Option B

Solution(By Examveda Team)

Function returns $total.

This Question Belongs to PHP >> Functions

Join The Discussion

Related Questions on Functions