Q:

What will be the output of the following PHP code ?

belongs to collection: FUNCTIONS IN PHP MCQ

0

What will be the output of the following PHP code ?

<?php
function movie($int)
{
    $movies = array("Fight Club", "Kill Bill", "Pulp Fiction");
    echo "You Do Not Talk About ". $movie[$integer];
}
movie(0);
?>

  1. You Do Not Talk About Fight Club
  2. You Do Not Talk About Kill Bill
  3. You Do Not Talk About Pulp Fiction
  4. None of the mentioned

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

(a).You Do Not Talk About Fight Club

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

FUNCTIONS IN PHP MCQ

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
What will be the output of the following PHP code ... >>
<< What will be the output of the following PHP code ...