What will be the output of the following PHP code?<br/>function addFunction($num1, $num2) {<br/>$sum = $num1 + $num2;<br/>return $sum;<br/>}<br/>$return_value = addFunction(10, 20);<br/>echo "Returned value from the function : $return_value"
YOUR ANSWER : ?
EXAMIANS