An HTML form that is part of the PHP script that processes it is known as self-referencing? O True O False Global variables can be brought into local scope by using the global keyword. O True O False Variables declared within a function are said to have local scope. O True O FalseThe O return O put O send O respond statement stops execution of the function and returns a value to the statement that called the function. PHP is used to validate data on the client instead of the server? O True O False Which of the following functions will enable you to insert code from other files? O include() O require() O include_once() O require_once() All of the above When you pass arguments to a function, the value of each argument is assigned to the value of the corresponding parameter in the function definition O True O False Global variables are defined outside of functions and are accessible to anywhere up to the end of the file but not inside functions O True O FalseThe purpose of both the include() and require() functions is to "include a file into a web page". O True O False Function names should be short, descriptive and meaningful. O True O False To call a function, simply provide the function name by a pair of O round brackets O square brackets O greater than characters O question marks Functions should contain only the code that performs a single task. O True O False The include_once() and require_once() functions are handy in situations where multiple files may reference the same included code. For example File A php includes File B php and C.php File B.php includes File C php O True O FalseThe include() and require() constructs are identical in every way except in how they handle failure. O True O FalseThe include() function includes and evaluates the specified file. O Truel False The require() function handles failure by producing a 'Fatal Error' when an error occurs. O True O False Which of the following is the correct syntax for storing the name of the current script to place the script in the form action? O a. O b. O c. O d. The include() construct handles failure by producing a 'warning message when an error occurs. True O False Parameter values are supplied to the function when the function is called. O True O False Unlike variables, function names are case insensitive. O True O False