?
What will be the output of the following PHP code?
What will be the output of the following PHP code?
<?php
function sum($num1, $num2)
{
$total = $num1 + $num2;
echo "cos($total)";
}
sum(5,-5);
?>
<?php
function sum($num1, $num2)
{
$total = $num1 + $num2;
echo "cos($total)";
}
sum(5,-5);
?>
Answer & Solution
Correct Answer:
Option
B
cos() gives the cos value of the argument. Here the function returns 1.
Join the Discussion
Login to post a comment or share your explanation.
Login