Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Statistics The Art And Science Of Learning From Data

Authors: Alan Agresti, Christine A. Franklin

3rd Edition

9780321849281, 321755944, 321849280, 978-0321755940

More Books

Students also viewed these Programming questions

Question

=+5-5 Distinguish between actual costing and normal costing.

Answered: 1 week ago