PHP is the most popular web programming language. It’s Open-Source and easy to learn. If you are learning PHP, check some video tutorials. The objective questions in this MCQ is of basic type some output questions, questions related to arrays etc.
PHP Multiple Choice Objective (MCQ) Interview Questions
$a = 10;
unset($a);
echo $a;
$a = 10;
if(isset($a)){
echo "variable is declared";
}else{
echo "variable is not declared";
}
$str = "world";
echo "hello".$str;
It gives following output.
if('8'==8){
echo "True";
}else{
echo "False";
}
Following code prints.