Basic PHP What will be the output of the following PHP code?$num = 10;echo 'What is her age? \n She is $num years old'; What is her age? She is $num years old What is her age?n She is 10 years old What is her age? She is 10 years old What is her age? n She is $num years old What is her age? She is $num years old What is her age?n She is 10 years old What is her age? She is 10 years old What is her age? n She is $num years old ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 65536 16384 2147483647 1048576 65536 16384 2147483647 1048576 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? When the function contains only one parameter Never When the parameter is Boolean When the function is being declared as a member of a class When the parameter is being declared as passed by reference When the function contains only one parameter Never When the parameter is Boolean When the function is being declared as a member of a class When the parameter is being declared as passed by reference ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $10_somethings ${“MyVar”} &$something $_10 $aVaR $10_somethings ${“MyVar”} &$something $_10 $aVaR ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .ph .xml .php .html .ph .xml .php .html ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 123 011 000 111 123 011 000 111 ANSWER DOWNLOAD EXAMIANS APP