Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; Error 25 students 35 students 35 Error 25 students 35 students 35 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 parameter is Boolean When the function contains only one parameter Never When the parameter is being declared as passed by reference When the function is being declared as a member of a class When the parameter is Boolean When the function contains only one parameter Never When the parameter is being declared as passed by reference When the function is being declared as a member of a class ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Drek Kolkevi Willam Makepiece Rasmus Lerdorf List Barely Drek Kolkevi Willam Makepiece Rasmus Lerdorf List Barely ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the looping statements is/are supported by PHP?1. for loop2. while loop3. do-while loop4. foreach loop 1 and 2 1, 2 and 3 All of the mentioned None of the mentioned 1 and 2 1, 2 and 3 All of the mentioned None of the mentioned ANSWER DOWNLOAD EXAMIANS APP
Basic PHP With the introduction of namespaces, the same function name can be used in multiple places. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP