Q1. To reverse an array of int/float.
Q2. To insert an element at a given location of an array.
Q3. Delete a given element in an array.
Q4. Linear search for element.
Q5. Binary search for an element (which one among linear or binary search is better and why).
Q6. Sum and average of array elements.
Q7. Merge two arrays.
Q8. Find largest and smallest in array.
Q9. Union and intersection of elements of two arrays.
Q10. Remove duplicates in an array.
Q11.To add, multiply and transpose of a matrix.
Q12. Sort the array elements in ascending order.
Q13. Rotate array elements (123,231,312) or (abcd, bcda, cdab, dabc).
Q14. Find mean, median, mode of an array.
Q15. Use functions, loops and arrays to convert a decimal number into (a) binary (b) octal (c) hexadecimal.
Q16. Bonus