answer base on java
2. Write the selectionSort method as it appears in your utilityclass:
3. Write the code to call selectionSort (in your utility class)for this array:
public static void main(String[] args)
{
Item[] theItems = new Item[3];
theItems[0] = newItem(12, 54);
theItems[1] = newItem(2, 42);
theItems[2] = newItem(142, 24);
// Add code to call selectionSort from your utility class
Expert Answer
An answer will be send to you shortly. . . . .