

MCQOPTIONS
Saved Bookmarks
1. |
What is the output of the code shown? a='hello' q=10 vars() |
A. | {‘a’ : ‘hello’, ‘q’ : 10, ……..plus built-in names set by Python….} |
B. | {……Built in names set by Python……} |
C. | {‘a’ : ‘hello’, ‘q’ : 10} |
D. | Error |
Answer» B. {……Built in names set by Python……} | |