Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; Error 35 students 25 students 35 Error 35 students 25 students 35 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 3 1+2 12 Error 3 1+2 12 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Within a namespace, for accessing the built-in PHP classes you can prefix the class name with a . . . . . and let PHP look in the global class list. asterix ampersand percent backslash asterix ampersand percent backslash ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 2147483647 16384 1048576 65536 2147483647 16384 1048576 65536 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP It is possible to create a hierarchy of namespaces in PHP. TRUE FALSE TRUE FALSE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed? 5 12 Error 1 5 12 Error 1 ANSWER DOWNLOAD EXAMIANS APP