Posts

Showing posts with the label Tuple Quiz

Tuple Quiz

  Tuple in Python - MCQ Quiz 🟣 Tuple in Python — MCQ Quiz (15) Select one answer per question. Click Submit to see your score. 1. Which Python data type is immutable ? a) list b) tuple c) set d) dict 2. How do you create a single-element tuple containing the string "a"? a) ("a") b) ("a",) c) ["a"] d) (a,) 3. How do you access the first element of a tuple t ? a) t[0] b) t(0) c) t.first() d) t.get(0) 4. Which built-in function converts a list [1,2,3] into a tuple? a) convert() b) to_tuple() c) tuple() d) list() 5. Which operator concatenates two tuples (1,2) and (3,4) ? a) * b) + c) & d) .concat() 6. Which tuple method returns the number of occurrences of a value? a) index() b) find() c) count() d) occurrences() 7. Which of the following ...