71.
What will be the output of the following PHP code ?
<?php
function string()
{
    echo strstr("Hello world!", 111);
}
string();
?>

74.
Output will be:
$array = array(0, 1, 2);
$array = array_pad($array, -6, ‘NEW’);