ExamVeda
Login
Home
This question belongs to PHP Functions
Functions
?

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);
?>

Answer & Solution
Correct Answer: Option A
Simple use of arrays.
Examveda
Question posted by Examveda
Community

Join the Discussion

No comments yet Be the first to discuss this question.