The following form is loaded in a browser and submitted, with the checkbox activated:
What is the function of backtick (`) characters in PHP?
Which options do you have in PHP to set the expiry date of a session?
Given the following code, what will be the value of $a?
$a = array('a', 'b');
array_push($a, array(1, 2));
Would the following code catch a parse error?
try {
echo $label
} catch (Exception $e) {
echo $e->getMessage();
}
Which methods can be used to overload object properties? (Choose 2)
What DOMElement method should be used to check for availability of a non-namespaced attribute?
When checking whether two English words are pronounced alike, which function should be used for the best possible result?
Which of these protocols are NOT governed by the W3C in their latest versions? (Choose 2)
What will the following code piece print?
echo strtr('Apples and bananas', 'ae', 'ea')