PHP Arrays
What will be the output of the following PHP code?
$names = array("Sam", "Bob", "Jack");
echo $names[0] . "is the brother of " . $names[1] . " and " . $names[1] . ".";

Sam is the brother of Bob and Jack
Error
Sam is the brother of Jack and Bob)
Sam is the brother of Bob and Bob)

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
There are three different kind of arrays:

Numeric array, Associative array, Multidimensional array
Numeric array, String array, Multidimensional array
Numeric array, Associative array, Dimensional array
Const array, Associative array, Multidimensional array

ANSWER DOWNLOAD EXAMIANS APP