Basic PHP
What will be the output of the following PHP code?
$total = "25 students";
$more = 10;
$total = $total + $more;
echo "$total";

35
25 students
35 students
Error

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 being declared as passed by reference
Never
When the function is being declared as a member of a class
When the function contains only one parameter
When the parameter is Boolean

ANSWER DOWNLOAD EXAMIANS APP