17: Problem statement: Write C++ program to store second year percentage of students in array. Write function for sorting array of floating point numbers in ascending order using a) Insertion sort b) Shell Sort and display top five scores. Program: #include<stdio.h> void insertion(float [],int); void shell(float[],int); int main() { int i, n,op; float a[30]; do { printf("\n 1)Insertion Sort \n 2) Shell Sort \n 3) Quit"); printf("Enter your choice :"); scanf("%d",&op); if(op==1) { printf("\n Enter no. of elements :"); scanf("%d",&n); printf("\n Enter Array elements :"); for(i=0;i...