// short program to demonstrate the use of a map to keep track of the names // of the instructors for various courses. import java.util.*; public class Instructor { public static void main(String[] args) { Map instructors = new TreeMap<>(); instructors.put("cse143a", "Stuart Reges"); instructors.put("cse123a", "Brett Wortzman"); instructors.put("cse123b", "Brett Wortzman"); instructors.put("cse154a", "Tal Wolman"); instructors.put("cse121a", "Miya Natsuhara"); instructors.put("cse122a", "Hunter Schafer"); instructors.put("cse160a", "Andrew Fitz Gibbon"); System.out.println("instructors = " + instructors); } }