Home » Python mcq questions with answer – Set 5

Python mcq questions with answer – Set 5

Important Instructions:

  • Total Number Of Questions : 10
  • Passing Marks : 7
  • Each Question Carry 1 Mark, No Negative Marking.
  • Do Not Refresh The Page.
  • This Is A FREE Online Test, DO NOT Pay Money To Anyone To Attend This Test.
  • Best Of Luck…

Results

-

#1. What is the result of the following expression: 'abc' + 3?

#2. What is the result of the following expression: 3 + 'abc'?

#3. What is the result of the following expression: len('abc')?

#4. What is the result of the following expression: min([1, 2, 3])?

#5. What is the result of the following expression: max([1, 2, 3])?

#6. What is the result of the following expression: sum([1, 2, 3])?

#7. What is the result of the following expression: sorted([3, 1, 2])?

#8. What is the result of the following expression: 'abc'.replace('a', 'A')?

#9. What is the result of the following expression: sorted([3, 1, 2], reverse=True)?

#10. What is the result of the following expression: 'abc'.capitalize()?

CHECK ANSWER
Rate this post
Scroll to Top