Create Objects in Python - Quiz

  • Af(a=1, b=1, c=2, d)
  • Bf(a=1, b=1, c=2)
  • Cf(a=1, b, c=2)
  • Df(a=1, b)
  • AUndefinedError
  • BVariableError
  • CNameError
  • DNonObjectError
  • Aos.path.isFile("C:\Sample.txt")
  • Bos.isFile("C:\Sample.txt")
  • Cos.path.isfile("C:\Sample.txt")
  • Dos.path.exists("C:\Sample.txt")
  • A{'a': 'k', 'd': 'i', 'c': 'w', 'b': 'i'}
  • B{'a': 'kiwi', 'd': 'kiwi', 'c': 'kiwi', 'b': 'kiwi'}
  • CReuslts in error
  • D{'a': 'i', 'd': 'i', 'c': 'i', 'b': 'i'}