Python Tuple MCQ - Quiz

  • A(1, 2, 3, 4, 5)
  • B1,2,3,4,5
  • CError
  • D[1,2,3,4,5]
  • Alength( )
  • Blen( )
  • Csize( )
  • DNone of the above
  • ATypeError
  • BNameError
  • CNone of the above
  • DValueError
  • AConcatenation
  • BSlicing
  • CRepetition
  • DAll of the above
  • ATypeError
  • B(100, 800, 200, 300, 400, 500)
  • C(800, 100, 200, 300, 400, 500)
  • AWe cannot remove the items from the tuple
  • BWe cannot update items of the tuple.
  • CWe can remove the item from tuple but we cannot update items of the tuple
  • DBoth A and B