PHP Interview Practice #1

Q1. What is PHP?







Q2. PHP Stands for?







Q3. What is the output of PHP code given below?

$x = 8;
$y = 8.0;
echo ($x === $y);






Q4. Which variable is custom define variable?







Q5. What does PEAR stands for?







Q6. Who is the father of PHP?







Q7. Which one is PHP file extension?







Q8. Which of the following is correct to add a comment in php?







Q9. Which one is use for concatenate two strings in php?







Q10. Which of the following is the correct way to create a function in PHP?