1.
What is the correct way to declare a variable in PHP?
2.
Which of the following is a valid variable name in PHP?
3.
What will be the output of the following PHP code?

<?php
$x = 10;
$y = 5;
echo $x + $y;
?>
4.
What data type is the variable $age = 25; in PHP?
5.
Which of the following is a correct way to assign a floating-point number to a variable in PHP?
6.
Which of the following PHP operators is used for concatenation of strings?
7.
What will be the output of the following PHP code?

<?php
$name = "John";
echo "Hello, $name!";
?>
8.
Which of the following is a correct way to declare an array in PHP?
9.
What is the value of $x after the following PHP code is executed?

<?php
$x = 5;
$x += 3;
echo $x;
?>
10.
Which of the following PHP operators is used to compare whether two values are equal and of the same data type?