Question: Divide Maps In the previous exercise, you took two maps and turned them into one larger map. Now the teacher wants to take that larger

Divide Maps

In the previous exercise, you took two maps and turned them into one larger map. Now the teacher wants to take that larger map and create two new maps: one to containing all students who's name starts with "A" and one for everyone else.

theT divideMap() method below takes in a Map parameter called allSections. Implement it to add all of the students who's name starts with "A" to the map in the field aNames, and add all other students to the map in the field otherNames. The fields have already been initialized to empty maps for you in the class constructor.

 

public class MakeTwoMaps
{
   public Map aNames;
   public Map otherNames;

   public MakeTwoMaps()
   {
       aNames = new HashMap();
       otherNames = new HashMap();
   }

   public void divideMap(Map allSections)
   {
       
   }
}

 


Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!