1.

Question 7:Find the output of the following program:a ={}a.fromkeys(['a', 'b', 'c', 'd'], 98)print (a)(A) Syntax error(B) {‘a’:98, ‘b’:98, ‘c’:98, ‘d’:98}(C) {‘a’:None, ‘b’:None, ‘c’:None.’d’:None}(D) { }

Answer»


Discussion

No Comment Found

Related InterviewSolutions