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. Which statement is commonly used for PHP output? write php.write log echo2. What is the correct syntax of echo statement in PHP? echo echo() echo = () Both A. and B.3. A variable declared outside a function has a ____. local scope global scope4. What will be the output of the following PHP code?<?phpfunction myFunction(){$x = 5;echo "Result1: $x , ";}myFunction();echo "Result2: $x";?> Result1: 5 , Result2: Result1: 5 , Result2: 0 Result1: 5 , Result2: 5 None of the above5. PHP keywords are case-sensitive? Yes No6. What will be the output of the following PHP code? <?<?phpfunction Increment(){static $num = 0;echo "$num";$num++;}Increment();Increment();Increment();?> 000 111 011 0127. What will be the output of the following PHP code? <?<?phpvar_dump (print "Hello");?> Helloint(5) Helloint(6) Helloint(1) Hellonumber(5)8. Which function is used to convert the ASCII value to the character? asc() str() char() chr()9. PHP is an acronym for ____. Prefix Hypertext Preprocessor Prototype Hypertext Preprocessor Hypertext Preprocessor PHP: Hypertext Preprocessor10. What is NULL in PHP? Value Keyword Data Type Function11. In which year PHP was developed? 1993 1994 1995 199612. Which statement is faster echo or print? echo print13. Who developed PHP? Guido van Rossum Rasmus Lerdorf Jesse James Garrett Douglas Crockford14. Which function converts a string of ASCII characters to hexadecimal values? bin2hex() str2hex() hex() str_hex()15. 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 above16. A PHP script starts with ____ and ends with ___. <?php and ?> <php> and </php> <?php and /?php> </php and />17. 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,64718. 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;19. How many variable scopes are there in PHP? 1 2 3 420. Which is not a valid variable scope in PHP? local global static externalPlease fill in the comment box below.