Welcome to CHOOLS PHP ASSESSMENT (YOU HAVE ONLY 30 MINUTES TO COMPLETE THIS PART [20 Questions]) **** Wishing You All The Best **** Instructions : To start the quiz, please provide your name, email id and phone number. All questions are mandatory* Answering each question is required before going on to the next page of questions. Your response is subject to change at any time. After completed the quiz click the submit button. If, once the time is up, it will be automatically submitted. The report will be mailed to your email address after the quiz is finished. 1. What will be the output of the following PHP code? <?<?phpvar_dump (print "Hello");?> Helloint(5) Helloint(6) Helloint(1) Hellonumber(5)2. What will be the output of the following PHP code?<?php$x = 5;function myFunction(){echo "Result $x";}myFunction();?> Result $x Result 5 Result None of the above3. What is the extension of a PHP file? .php .ph .phpfile All of the above4. A variable declared outside a function has a ____. local scope global scope5. Which is/are statement(s) true about PHP?Which is/are statement(s) true about PHP?A. It is an open-source scripting languageB. PHP scripts execute on the serverC. It is used for developing dynamic & interactive websitesD. All of the aboveAnswer: D) All of the above It is an open-source scripting language PHP scripts execute on the server It is used for developing dynamic & interactive websites All of the above6. Which is not a valid variable scope in PHP? local global static external7. Which data type is not supported by PHP? Integer Complex Float String8. There is a variable "name" that contains the name of a person, which is/are the correct echo statement(s) to print the "name" suffix with "Hello". echo "Hello $name"; echo "Hello " . $name; echo ("Hello $name"); All of the above9. PHP is an acronym for ____. Prefix Hypertext Preprocessor Prototype Hypertext Preprocessor Hypertext Preprocessor PHP: Hypertext Preprocessor10. What is the name of an array that stores all global variables in PHP? $GLOBAL[] $global[] $GLOBALS[] $PHP_GLOBALS[]11. Are variable names case-sensitive? Yes No12. What will be the output of the following PHP code? <?<?phpfunction Increment(){static $num = 0;echo "$num";$num++;}Increment();Increment();Increment();?> 000 111 011 01213. What is the correct syntax of print statement in PHP? print print() print = () Both A. and B.14. Which type is used to store the database call? object class resource string15. Which function converts a string of ASCII characters to hexadecimal values? bin2hex() str2hex() hex() str_hex()16. Which statement is faster echo or print? echo print17. "Array" is a data type in PHP? Yes No18. Which is not a valid variable name in PHP? age _age PersonAge 1age19. PHP statements end with a ______. semicolon (;) colon (:) dot (.) comma (,)20. A PHP script starts with ____ and ends with ___. <?php and ?> <php> and </php> <?php and /?php> </php and />Please fill in the comment box below.