Examveda
Examveda

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

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

B. Array ( [0] => KA [2] => CA [4] => TA )

C. Array ( [1] => IA [3] => GA )

D. Array ( [1] => LA [3] => MA )

Answer: Option B

Solution(By Examveda Team)

The array_intersect() function returns a key preserved array consisting only of those values present in the first array that are also present in each of the other input arrays.

This Question Belongs to PHP >> Arrays

Join The Discussion

Related Questions on Arrays