^Bubble Sort
~Given the following numbers in array A ...

 41  54  23  27  31  15   9  34  51  43

... what is the contents of array A after the first pass of a Bubble Sort?
The numbers are being sorted into ascending order.



a.  41  23  27  31  15   9  34  51  43  54
b.  43   9  15  34  54  41  51  31  27  23
c.  15   9  23  41  54  34  27  51  31  43
d.   9  54  15  51  23  27  31  34  41  43
e.   None of the above []