1.
What keyword is used to define a function in PHP?
2.
What is the syntax for calling a function in PHP?
3.
Which of the following statements is true about function names in PHP?
4.
What is the purpose of parameters in PHP functions?
5.
How do you define parameters in a PHP function?
6.
What is the purpose of the return statement in PHP functions?
7.
Which of the following statements about return types in PHP functions is true?
8.
What will be the output of the following PHP code?

<?php
function add($a, $b) {
return $a + $b;
}
$result = add(5, 3);
echo $result;
?>
9.
What is the significance of default parameter values in PHP functions?
10.
Which PHP keyword is used to declare a variable-length argument list in a function?