Question: ineed a short simple java code :) Exercise 1 Given (name, number) pairs A={(Bob,4), (Amber, 5), (George, 3), (Will, 7)}, write a Java class with
Exercise 1 Given (name, number) pairs A={(Bob,4), (Amber, 5), (George, 3), (Will, 7)\}, write a Java class with method for: (1) inserting these pairs into a pair of ArrayList structures called NameAL and NumberAL (2) displaying the pairs to the screen as "My name is: "" at University." You can choose what to name your class and method, but your solution should form a complete class that can be compiled. Create another class for testing the pair class. Exercise 2: Write a class called GenericBox, which takes a generic type parameter E, holds a content of type E. The constructor, getter and setter work on the parameterized type E. The toString() reveals the actual type of the content. The following class tests the class GenericBox
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
