Starting with an empty Map of characters to integers named c…

Starting with an empty Map of characters to integers named cmap, suppose the following operations are performed: (Bonus Points: This question has 3 bonus points for a total of 3+3 = 6. Added later manually when graded by instructor). map cmap;    string seq = “ohio”;    int i = 0;    while (i < seq.length())    {        cmap=0;        int count = cmap;        cmap=count+1;        i = i + 1;    } for (auto& x: cmap) { cout

Fill in the function template to make a working function. Ma…

Fill in the function template to make a working function. Make sure your function conforms to the instructions given in the comments for the function.   ___________ commix(_______________________ ){// This function takes two sets as input and returns a new set. The new// set must contain all of the values from both original sets. The// original sets should not be changed by this method.// // YOU SHOULD NOT IMPLEMENT THIS METHOD RECURSIVELY!}