Question 6 of 223
What is the result of the following bitwise operation in PHP?
1 ^ 2
    Correct Answer: B

Question 7 of 223
What is the output of the following code?
echo "22" + "0.2", 23 . 1;
    Correct Answer: B

Question 8 of 223
What is the output of the following code?
$first = "second";
$second = "first";
echo $$$first;
    Correct Answer: B

Question 9 of 223
SIMULATION -
Your supervisor wants you to disallow PHP scripts to open remote HTTP and FTP resources using PHP's file functions. Which php.ini setting should you change accordingly?
    Correct Answer:

Question 10 of 223
Which of the following code snippets DO NOT write the exact content of the file "source.txt" to "target.txt"? (Choose 2)
    Correct Answer: B, C