import java.util.Enumeration;import java.util.Hashtable; public class StudentHashtableTest { public static void main(String[] args) {Hashtable table = new Hashtable();table.put("1", new Student("Jee", 1, "Seoul"));table.clear();table.put("2", new Student("Gong", 2, "Seoul"));// 1table.put("3", new Student("Song", 3, "Seoul"));// 2table.put("4", new Student("Lee", 4, "Koyang"));// 3table.put("4",..