51.
What will be the output of the following PHP code ?
<?php
function TV($string)
{
  echo "my favourite TV show is ".$string;
  function b()
  {
      echo " I am here to spoil this code";
  }
}
function b()
{
  echo " I am here to spoil this code";
}
b();
?>

52.
What will be the output of the following PHP code ?
<?php
function TV($string)
{
  echo "my favourite TV show is ".$string;
  function b()
  {
      echo " I am here to spoil this code";
  }
}
function b()
{
  echo " I am here to spoil this code";
}
b();
TV("Sherlock");
?>

53.
What will be the output of the following PHP code ?
<?php
function TV($string)
{
  echo "my favourite TV show is ".$string;
  function b()
  {
    echo " I am here to spoil this code";
  }
}
a("Sherlock");
b();
?>

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

55.
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;    
?>

56.
What will be the output of the following PHP code ?
<?php
$var = 10;
function one()
{
    echo $var;
}
one();
?>

57.
What will be the output of the following PHP code ?
<?php
function mine($m)
{
    if ($m < 0)
        echo "less than 0";
    if ($ >= 0)
        echo "Not True";
}
mine(0);
?>

58.
What will be the output of the following PHP code ?
<?php 
$x = 75;
$y = 25; 
function addition()
{
    $GLOBALS['z'] = $GLOBALS['x'] + $GLOBALS['y'];
}
addition();
echo $z;
?>

59.
What will be the output of the following PHP code ?
<?php
function 2myfunc()
{
    echo "Hello World";
}
2myfunc();
?>

60.
What will be the output of the following PHP code ?
<?php
function _func()
{
    echo "Hello World";
}
_func();
?>