PHP Programming Quiz 5 PHP Programming Quiz 5 According to latest definition, PHP now stands for ……….Personal Home PagePHP: Hypertext PreprocessorPersonal Hypertext PreprocessorPersonal Home ProcessorWhich of the following statement will display $Test on the screen?echo “$Test”;echo “\$Test”;echo “\\$Test”;All of aboveA function prefixed by double underscore is called ……….inline functionmagic functionsuper functiondefault functionPHP is a ………. language.server sideclient sidehtmlxml………. function is used to initiate a session.begin_session()session_start()session_begin()initiate_session()File extension of PHP files is ………..htm.php.ph.xmlWhich of the following statements can be used to display PHP on the screen?echo (“PHP”);printf (“PHP”);print (“PHP”);All of aboveFunctions can be defined in PHP as below.functionName { statements }data_type functionName(parameters) { statements }functionName(parameters) { statements }function fumctionName(parameters) { statements }Default PHP session name is ……….PHPSESSIONPHPSESSIDPHPSESSIONIDPHPSID($x == 11) ? 1 : 2; statement is called ……….absolute statementif-else statementternery operatorif-else operator