Q. What is the result of the following PHP code?
Code:
<?php
$arr = array("A", "B", "C", "D");
echo pos($arr);
?>
β
Correct Answer: (B)
A
<?php
$arr = array("A", "B", "C", "D");
echo pos($arr);
?>
You must be Logged in to update hint/solution