Python MCQs with answers Page - 151

Here, you will find a collection of MCQ questions on Python. Go through these questions to enhance your preparation for upcoming examinations and interviews.

To check the correct answer, simply click the View Answer button provided for each question.

Have your own questions to contribute? Click the button below to share your MCQs with others!

+ Add Question

A

Admin • 831.35K Points
Coach

Q. Which data type is immutable in Python?

  • (A) List
  • (B) Dictionary
  • (C) Set
  • (D) Tuple

A

Admin • 831.35K Points
Coach

Q. What does the len() function do in Python?

  • (A) Returns the number of items in an object
  • (B) Returns the memory size of the object
  • (C) Deletes an object
  • (D) Converts object to string

A

Admin • 831.35K Points
Coach

Q. What is the output of the following code?

Code:
print(type(10/2))
  • (A) <class 'int'>
  • (B) <class 'float'>
  • (C) <class 'double'>
  • (D) <class 'number'>

A

Admin • 831.35K Points
Coach

Q. Which keyword is used to define a function in Python?

  • (A) function
  • (B) def
  • (C) fun
  • (D) define

A

Admin • 831.35K Points
Coach

Q. What is the output of the following code?

Code:
x = 'Python'
print(x[0])
  • (A) P
  • (B) y
  • (C) n
  • (D) Error

A

Admin • 831.35K Points
Coach

Q. Which operator is used for floor division in Python?

  • (A) /
  • (B) //
  • (C) %
  • (D) **

A

Admin • 831.35K Points
Coach

Q. Which of these is a valid variable name in Python?

  • (A) 2variable
  • (B) variable_2
  • (C) variable-2
  • (D) variable.2

A

Admin • 831.35K Points
Coach

Q. What is the output of the following code?

Code:
x = [1, 2, 3]
print(len(x))
  • (A) 2
  • (B) 3
  • (C) 1
  • (D) Error

A

Admin • 831.35K Points
Coach

Q. Which function is used to take input from a user in Python?

  • (A) input()
  • (B) scan()
  • (C) cin>>
  • (D) read()

A

Admin • 831.35K Points
Coach

Q. What is the default return value of a function that does not return anything explicitly?

  • (A) 0
  • (B) null
  • (C) None
  • (D) Error

Add MCQ in this Category

If you want to share an MCQ question in this category, it's a great idea! It will be helpful for many other students using this website.

Share Your MCQ