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. 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 above2. Which is not a valid variable scope in PHP? local global static external3. Which data type is not supported by PHP? Integer Complex Float String4. What is the correct syntax of echo statement in PHP? echo echo() echo = () Both A. and B.5. Which is not a valid variable name in PHP? age _age PersonAge 1age6. 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 above7. Which PHP keyword is used to access a global variable inside the function? php_ global global global_variable globalscope8. Multi-line comments can be written within the ____. // and // ## and ## /* and */ /// and ///9. PHP keywords are case-sensitive? Yes No10. PHP is an acronym for ____. Prefix Hypertext Preprocessor Prototype Hypertext Preprocessor Hypertext Preprocessor PHP: Hypertext Preprocessor11. Are variable names case-sensitive? Yes No12. Which type is used to store the database call? object class resource string13. There is a variable "name" that contains the name of a person, which is/are the correct print statement(s) to print the "name" suffix with "Hello". print "Hello $name"; print "Hello " . $name; print ("Hello $name"); All of the above14. In the syntax of $GLOBALS[index], what does "index" hold? Index (starting from 0) of the variable Index (starting from 1) of the variable Name of the variable Line number of the variable where the variable was declared15. Which sign is used to declare variables in PHP? @ & $ _16. What is the complete syntax of chunk_split() function in PHP? chunk_split(string,length,end) chunk_split(string) chunk_split(string,end) chunk_split(length)17. Which function converts a string of ASCII characters to hexadecimal values? bin2hex() str2hex() hex() str_hex()18. A PHP script starts with ____ and ends with ___. <?php and ?> <php> and </php> <?php and /?php> </php and />19. Which function is used to replace text within a string? str_replace() replace() replace_str() string-replace()20. A PHP integer data type can store values between ____. -65,536 and 65,535 0 and 4,294,967,295 -(2^63) and (2^63)-1 -2,147,483,648 and 2,147,483,647Please fill in the comment box below.