What will be the output of the following PHP code?<br/>$arr = array ("picture1.JPG", "picture2.jpg", "Picture10.jpg", "picture20.jpg");<br/>sort($arr);<br/>print_r($arr);

TRUE ANSWER : ?
YOUR ANSWER : ?

What will be the output of the following PHP code ?<br/>$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");<br/>$a2 = array("e" => "red","f" => "green", "g" => "blue");<br/>$result = array_intersect($a1, $a2);<br/>print_r($result);

TRUE ANSWER : ?
YOUR ANSWER : ?