Question1) Write a program to delete an element from the array and shift the elements
(a)Towards right.
(b)Towards left.
Question 2) Write a program to delete all the occurrences of a given value from the array and shift the remaining elements to the left of the array.
Question 3) Write a program to delete duplicate elements from an array.
Question 4) Write a program to insert a value in the array at desired location.
Question 5) Write a program to insert a value in the sorted array.
Question 6) Write a program to sort an array.
• Using bubble sort technique
• Using selection sort technique
• Using insertion sort technique.
• Using Quick sort technique
• Using Heap sort technique.
Question 7) Write a program to check that given array is sorted in ascending / descending order.
Question 8) Write a program to search a value in the array using
• Linear search technique.
• Using binary search technique.
Question 9) Write a program to count the number of occurrences of a given number in an integer array.
Question 10) An array consists of 50 integers in the range of 1 to 25, write a program that printsthe number of times each integer occurs in the array.
Question 11) A, B, C are the arrays of integers of size a, b, a + b, Write a program to produce athird array C containing all the elements of array A and B.
Question 12) Write a program to add and multiply two large integers, which cannot be represented by built in data types.
Question 13) Write a program to delete all elements in between and occupying two specified positions.
Question 14) Write a program to search the first occurrence a given sub array within another array.
Question 15) Write a program to merge 4 arrays a, b, c, d in one array. All the arrays are in ascending order.