Consider that there are two arrays A and B each of size 10. Array ‘A’ contains numbers with multiples of 5 of any range. Array ‘B’ contains numbers with multiples of 3 of any range. Write a PERL code to perform and display the following.
 Add the numbers of Array ‘A’ and Array ‘B’ in each position and check whether the sum is a prime number or not.
 List the positions in which the sum is prime and display...