21.
Which PHP keyword is used to pass a function as an argument to another function?
22.
What is the output of the following PHP code?
<?php
function uppercase($str) {
return strtoupper($str);
}
echo uppercase("hello");
?