Basic PHP You can test the type of any variable with the ..... function. settype() showtype() gettype() whattype() settype() showtype() gettype() whattype() ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = 1;$num1 = 2;print $num . "+". $num1; 1+2 1.+.2 Error 3 1+2 1.+.2 Error 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Rasmus Lerdorf Drek Kolkevi Willam Makepiece List Barely Rasmus Lerdorf Drek Kolkevi Willam Makepiece List Barely ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; 35 Error 35 students 25 students 35 Error 35 students 25 students ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which version of PHP introduced Try/catch Exception? PHP 5 PHP 5.3 PHP 4 PHP 6 PHP 5 PHP 5.3 PHP 4 PHP 6 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); False 1 Error 5 === 5 False 1 Error 5 === 5 ANSWER DOWNLOAD EXAMIANS APP