Answer:
1. n
2. we can slect that permutation without any comparison and the array wil be sorted in to one time.
3. we cannot sort the list without any comparision test.
Step-by-step explanation:
1. The total number of permutations available are n! because there are ' n ' distinct elements in an array.
2. Here we are given the total ordering permutations, among those available permutations there will be one permutation in which all the elements of the array are sorted. so, we can slect that permutation without any comparison and the array wil be sorted in to one time.
3. If there is no total ordering permutation then we cannot sort the list without any comparision test. In this case we should know the the number of inversion required to see the array. Based on the permutations we can select the permutation which requires minimum inversions. Here inversion sort works well.
See attachment for the details of 4 and 5.