write modules to sort by
2 field then 3 fields then 4 fields Use the data Structure to
guide you.
//HW sort by 5 of these fields and ask the user which field to
sort by !!!
// Use a custom comparator.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
class Emprec {
String name;
String address;
double hours;
double rate;
int dependents;
char gender;
boolean degree;
// This is the classes's constructor !!!!
Emprec(String name, String address, String hours,String...