PHP Arrays
Array values are keyed by ______ values (called indexed arrays) or using ______ values (called associative arrays). Of course, these key methods can be combined as well.

Float, string
Even number, string
Integer, string
String, Boolean
Positive number, negative number

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
Absent any actual need for choosing one method over the other, does passing arrays by value to a read-only function reduce performance compared to passing them by reference?

Yes, because PHP must monitor the execution of the function to determine if changes are made to the array.
No
Yes, but only if the function modifies the contents of the array.
Yes, but only if the array is large.
Yes, because the interpreter must always create a copy of the array before passing it to the function.

ANSWER DOWNLOAD EXAMIANS APP

PHP Arrays
What will be the output of the following PHP code?
$array1 = array ("KA", "LA", "CA", "MA", "TA");
$array2 = array ("KA", "IA", "CA", "GA", "TA");
$inter = array_intersect ($array1, $array2);
print_r ($inter);

Array ( [1] => LA [3] => MA )
Array ( [0] => KA [1] => LA [2] => CA [3] => MA [4] => TA [5] => IA [6] => GA )
Array ( [1] => IA [3] => GA )
Array ( [0] => KA [2] => CA [4] => TA )

ANSWER DOWNLOAD EXAMIANS APP