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. A PHP script starts with ____ and ends with ___. <?php and ?> <php> and </php> <?php and /?php> </php and />2. Which function is used to replace text within a string? str_replace() replace() replace_str() string-replace()3. PHP statements end with a ______. semicolon (;) colon (:) dot (.) comma (,)4. What is the extension of a PHP file? .php .ph .phpfile All of the above5. Multi-line comments can be written within the ____. // and // ## and ## /* and */ /// and ///6. PHP is an acronym for ____. Prefix Hypertext Preprocessor Prototype Hypertext Preprocessor Hypertext Preprocessor PHP: Hypertext Preprocessor7. What is the correct syntax of print statement in PHP? print print() print = () Both A. and B.8. 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. Single line comments can be placed in PHP script by using which symbol? // # $ Both A. and B.10. "Array" is a data type in PHP? Yes No11. What is the correct syntax of echo statement in PHP? echo echo() echo = () Both A. and B.12. 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. Who developed PHP? Guido van Rossum Rasmus Lerdorf Jesse James Garrett Douglas Crockford14. PHP keywords are case-sensitive? Yes No15. 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 above16. 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. Are variable names case-sensitive? Yes No18. How many variable scopes are there in PHP? 1 2 3 419. There are two variables a, b which declared in global scope, which is the correct PHP statement to access them within a function? global $a, $b; global $a $b; global ($a, $b); php_global $a, $b;20. Which PHP keyword is used to access a global variable inside the function? php_ global global global_variable globalscopePlease fill in the comment box below.