Basic PHP PHP files have a default file extension of_______. .html .ph .php .xml .html .ph .php .xml 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(); 000 011 111 123 000 011 111 123 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; get false clueget true get false clueget true ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “\$x”; echo “/$x”; echo “$x;”; echo “$$x”; echo “\$x”; echo “/$x”; echo “$x;”; echo “$$x”; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); False Error 1 5 === 5 False Error 1 5 === 5 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Willam Makepiece Rasmus Lerdorf Drek Kolkevi List Barely Willam Makepiece Rasmus Lerdorf Drek Kolkevi List Barely ANSWER DOWNLOAD EXAMIANS APP