Given the code fragment:
Map books = new TreeMap<>();
books.put (1007, “A”);
books.put (1002, “C”);
books.put (1003, “B”);
System.out.println (books);
What is the result?
{1007=A, 1003=B, 1002=C}
{1007=A, 1003=B, 1003=B, 1002=C}
{1007=A, 1002=C, 1003=B, 1003=B}
{1002=C, 1003=B, 1007=A}
Submit