Consider the following code:
%chars = ("a", "100", "b", "90", "c", "80");
Which one of the following choices will reverse the key/value pairing of the code?
- reverse(%chars);
- %chars =reverse(%chars);
- reverse(%chars) = %chars;
- invert(%chars);
Reveal Solution Next Question