Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

need the dufun ==> (poke 3 \'hello) to print (one two hello three four) ==> (pee

ID: 3604122 • Letter: N

Question

need the dufun ==> (poke 3 'hello) to print (one two hello three four) ==> (peek 3) hello ==> (purge 3) (one two three four) ==> (pokeload) Enter new items and then type END: five six seven end (one two three four five six seven) ==> (present) one two three four five six seven () Try all of your functions using the lisp interpreter. for example (defun multcrazy (mylist multi) (cond ((null mylist) '()) ((atom mylist) (* mylist multi)) (t (cons (multcrazy (car mylist) multi) (multcrazy (cdr mylist) multi) ) ) ) )

Explanation / Answer

import java.util.*;   public class TreeMapExample {      public static void main(String args[]) {      // Create and populate tree map      Map map = new TreeMap();               map.put(102,"Let us C");      map.put(103, "Operating System");      map.put(101, "Data Communication and Networking");      System.out.println("Values before remove: "+ map);        // Remove value for key 102      map.remove(102);      System.out.println("Values after remove: "+ map);      }       }