PHP Quiz PHP Fundamentals 1. What does PHP stand for? Private Hypertext Processor Personal Home Page PHP: Hypertext Preprocessor Preprocessor Hypertext Processor 2. Which of the following is the correct way to declare a variable in PHP? $variable; var $variable variable = 5 int $variable = 5; 3. How do you include an external PHP file? #include include(file.php) import(file.php require(file.php) 4. Which of the following is the correct way to create a function in PHP? function myFunction() {} create function myFunction() {} def myFunction() {} func myFunction() {} 5. How do you write a single-line comment in PHP? # This is a comment // This is a comment """ This is a comment """ /* This is a comment */ Submit Answers