Loading, please wait...

Python Multiple Choice Questions And Answers

Search here for MCQs

Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:

List of Programming Full Forms 

36. Is tuple mutuable

  • No
  • yes

37. Suppose list1 is [3, 5, 25, 1, 3], what is min(list1)

  • 5
  • 1
  • 3
  • 25

38. Which command is used to add an element in the list

  • list.sum(5)
  • list1.add(5)
  • list1.append(5)
  • list.addelement(5)

39. Output of 7^10 is

  • 12
  • 7
  • 15
  • 13

40. What is the output?

Y=[2,5J,6] Y.sort()
  • [2,6,5J]
  • [5J,2,6]
  • Error
  • [6,5J,2]