At Westonci.ca, we make it easy for you to get the answers you need from a community of knowledgeable individuals. Connect with a community of experts ready to provide precise solutions to your questions quickly and accurately. Discover in-depth answers to your questions from a wide network of professionals on our user-friendly Q&A platform.

Create a Method of sorting method (Bubble Sort, Selection sort, Merge sort) and a method
of searching method (Linear Search, Binary Search, Jump Search). Write a method for
each algorithm that sorts or searches a given array of integers. The methods must take
one parameter which is the list. For the searching method one additional parameter
"search_value" must be passed because for searching you first need a value to search for.
Please check the following code snippet for clarity: