ExamVeda
Login
Home
This question belongs to PHP Functions
Functions
?

What will be the output of the following PHP code ?
<?php
function mine($num)
{
    $num = 2 + $num;
    echo $num;
}
mine(3);
?>

Answer & Solution
Correct Answer: Option C
Simple arithmetic operation.
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.