This dictionary studentrecords contains student Cougar Card ID numbers as integer keys, and their names as string values. Match the following examples of code with the the output they print: The code could print all the student names, the Cougar Card ID numbers, both the names and the numbers, or something else. Note1: More than one code segment may match the same output and not all outputs are necessarily matched to a code segment. Note2: The exact format of printing is not important, only that the names are all printed. for id in studentrecords.keys(): print (studentrecords [id]) print (studentrecords) while id < len (studentrecords): print (studentrecords [id]) for id in studentrecords.keys(): print (id) A. Prints the student names. B. Prints the ID numbers. C. Prints both the student names and ID numbers.