In the JAVA language consider these questions regarding tracing an insertion sort Trace an insertion sort on the following array. 27 14 23 24 19 12 20 10
1: What is the contents of the array after the first pass of insertion sort?
2: What is the contents of the array after the second pass of insertion sort?
3: What is the contents of the array after the third pass of insertion sort?
4: How many total passes will execute during the insertion sort?