Practical No: -5 Experiment No. 6: Write a python program to store first year percentage of students in array. Write function for sorting array of floating-point numbers in ascending order using a) Selection Sort b) Bubble sort and display top five score Code: # Function for Selection Sort of elements def Selection_Sort(marks): for i in range(len(marks)): # Find the minimum element in remaining unsorted array min_idx = i for j in range(i + 1, len(marks)): if marks[min_idx] > marks[j]: min_idx = j # Swap the minimum element with the first element marks[i], marks[min_idx] = marks[min_idx], marks[i] print("Marks of students after performing Selection Sort on the list : ") for i in range(len(marks)): print(marks[i]) #<---------------------------------------------------------------------------------------> # Function for Bubble Sort of elements def Bubble_Sort(marks): n = len(marks) # Traverse throug...