gs gs107 PHP Functions - PHP Functions - Quiz No.5
gs gs107 PHP: Hypertext Preprocessor Quiz
This quiz belongs to book/course code gs gs107 PHP: Hypertext Preprocessor of gs organization. We have 73 quizzes available related to the book/course PHP: Hypertext Preprocessor. This quiz has a total of 10 multiple choice questions (MCQs) to prepare and belongs to topic PHP Functions. NVAEducation wants its users to help them learn in an easy way. For that purpose, you are free to prepare online MCQs and quizzes.
NVAEducation also facilitates users to contribute in online competitions with other students to make a challenging situation to learn in a creative way. You can create one to one, and group competition on an topic of a book/course code. Also on NVAEducation you can get certifications by passing the online quiz test.
<?php function 2myfunc() { echo "Hello World"; } 2myfunc(); ?>
<?php function _func() { echo "Hello World"; } _func(); ?>
<?php function test($int) { if ($int == 1) echo "This Works"; if ($int == 2) echo "This Too Seems To Work"; } test(1); TEST(2); ?>
<?php function string($title); { $title = ucwords($title); echo lcfirst($title); } string("you went full retard"); ?>
<?php function multi($num) { if ($num == 3) echo "I Wonder"; if ($num == 7) echo "Which One"; if ($num == 8) echo "Is The"; if ($num == 19) echo "Correct Answer"; } $can = stripos("I love php, I love php too!","PHP"); multi($can); ?>
<?php function movie($int) { $movies = array("Fight Club", "Kill Bill", "Pulp Fiction"); echo "You Do Not Talk About ". $movie[$integer]; } movie(0); ?>