Basic PHP Which of the looping statements is/are supported by PHP?1. for loop2. while loop3. do-while loop4. foreach loop All of the mentioned 1, 2 and 3 1 and 2 None of the mentioned All of the mentioned 1, 2 and 3 1 and 2 None of the mentioned 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"; 25 students 35 students 35 Error 25 students 35 students 35 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . . gibberish value 0 NULL an empty string gibberish value 0 NULL an empty string ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Under what circumstance is it impossible to assign a default value to a parameter while declaring a function? Never When the parameter is Boolean When the function contains only one parameter When the parameter is being declared as passed by reference When the function is being declared as a member of a class Never When the parameter is Boolean When the function contains only one parameter 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 PHP considers the following values as False constant NULL the one-character string 0 the integer 0 both A and B All of Above constant NULL the one-character string 0 the integer 0 both A and B All of Above ANSWER DOWNLOAD EXAMIANS APP