Answer:Consider ‘i’ is an iterator that accesses the elements of a map. Which of the following will be used to access the two entries, namely key and value of the map?
Options
a) i.first, i.second
b) (*i).first, (*i).second
c) *i.first, *i.second
d) *i.first, (*i).second
Answer : b) (*i).first, (*i).second