PHP Quiz Results #1. What does PHP stand for? Private Home Page PHP: Hypertext Preprocessor Personal Hypertext Processor #2. What is the correct way to end a PHP statement? New line ; . > </php < #3. When using the POST method, variables are displayed in the URL: True False #4. PHP can be run on Microsoft Windows IIS(Internet Information Server): False True #5. Which operator is used to check if two values are equal and of same data type? === = != == #6. How do you create an array in PHP? $cars = array("Volvo", "BMW", "Toyota"); $cars = array[“Volvo”, “BMW”, “Toyota”]; $cars = "Volvo", "BMW", "Toyota"; #7. Which one of these variables has an illegal name? $my-Var $myVar $my_Var #8. What is a correct way to add a comment in PHP? /*...*/ *\...\* < comment > ... < /comment > #9. Which superglobal variable holds information about headers, paths, and script locations? $_SERVER $_SESSION $_GET $GLOBALS #10. What is the correct way to open the file “time.txt” as readable? fopen("time.txt","r"); open("time.txt"); fopen("time.txt","r+"); open("time.txt","read"); #11. How do you get information from a form that is submitted using the “get” method? $_GET[]; Request.QueryString; Request.Form; #12. How do you write “Hello World” in PHP echo "Hello World"; "Hello World"; Document.Write("Hello World"); Previous Finish