tech beamers
  • Python Lab
    • Python Online Compiler
    • Python Code Checker
    • Python Coding Exercises
    • Python Coding Quizzes
  • SQL Practice
  • Selenium Practice
  • SW Guides
tech beamers
Search
  • Python Lab
    • Python Online Compiler
    • Python Code Checker
    • Python Coding Exercises
    • Python Coding Quizzes
  • SQL Practice
  • Selenium Practice
  • SW Guides
Follow US
© TechBeamers. All Rights Reserved.
Python Quizzes

Python Quiz: Classes and Objects Part 1

Last updated: Mar 07, 2025 11:22 am
Meenakshi Agarwal
By Meenakshi Agarwal
No Comments
11 months ago
SHARE

We’ve curated this online Python quiz for beginners learning Python programming. It enlists 20 questions on Python classes and objects. It’s easy to define a class in Python using the <class> keyword. Check out a simple Python class definition below.

class TestClass:

    '''It is a doc string. I've implemented a new class.'''
   pass

In the above code, you can see the highlighted doc string specifying the description of the class. Let’s now see a little more about classes before moving on to the quiz.

Basics of Python Classes

In Python, every class has a local namespace to define all its members which could either be functions or variables. Also, every Python class holds a set of special attributes. Each of them starts and ends with a double underscore sign (__). If you consider the above example, then using the __doc__ will return the doc string of that class.

Once you have the class defined, it is easy to instantiate it anytime. You can use a class object to reference any of its attributes. Let’s see a simple example to define the class instance.

>>> myObj = TestClass()

Like constructors in C++, we’ve __init__() method in Python. This function gets called every time you instantiate the class. Please refer to the below example to view a complete Python class.

class EmployeeData:

    def __init__(self, sal=0, age=0):
        self.sal = sal
        self.age = age

    def getData(self):
        print("{0}+{1}j".format(self.sal,self.age))

Discover our complete Python tutorial that caters to all your programming requirements in Python. Let’s now start the online Python quiz for beginners.

Python OOP Quiz for Beginners – Classes and Objects

Attempt this online programming quiz with 20 questions for beginners learning Python OOP (class and objects) concepts.

Q-1. Which of the following represents a distinctly identifiable entity in the real world?

A. A class
B. An object
C. A method
D. A data field

Show Answer

Option – B

Q-2. Which of the following represents a template, blueprint, or contract that defines objects of the same type?

A. A class
B. An object
C. A method
D. A data field

Show Answer

Option – A

Q-3. Which of the following keywords mark the beginning of the class definition?

A. def
B. return
C. class
D. All of the above.

Show Answer

Option – C

Q-4. Which of the following is required to create a new instance of the class?

A. A constructor
B. A class
C. A value-returning method
D. A None method

Show Answer

Option – A

Q-5. Which of the following statements is most accurate for the declaration x = Circle()?

A. x contains an int value.
B. x contains an object of the Circle type.
C. x contains a reference to a Circle object.
D. You can assign an int value to x.

Show Answer

Option – C

Q-6. What will be the output of the following code snippet?

class Sales:
    def __init__(self, id):
        self.id = id
        id = 100

val = Sales(123)
print (val.id)

A. SyntaxError, this program will not run
B. 100
C. 123
D. None of the above

Show Answer

Option – C

Q-7. Which of the following statements is correct?

A. A reference variable is an object.
B. A reference variable refers to an object.
C. An object may contain other objects.
D. An object can contain references to other objects.

Show Answer

Option – B and D

Q-8. What will be the output of the following?

s = "\t\tWelcome\n"
print(s.strip())

A. \t\tWelcome\n
B. Welcome\n
C. \t\tWELCOME
D. Welcome

Show Answer

Option – D

Q-9. What will be the output of the following code snippet?

class Person:
    def __init__(self, id):
        self.id = id

sam = Person(100)

sam.__dict__['age'] = 49

print (sam.age + len(sam.__dict__))

A. 1
B. 2
C. 49
D. 50
E. 51

Show Answer

Option – E

Q-10. Which of the following can be used to invoke the __init__ method in B from A, where A is a subclass of B?

A. super().__init__()
B. super().__init__(self)
C. B.__init__()
D. B.__init__(self)

Show Answer

Option – A and d

Q-11. Which of the following statements are correct about the given code snippet?

class A:
    def __init__(self, i = 0):
        self.i = i

class B(A):
    def __init__(self, j = 0):
        self.j = j

def main():
    b = B()
    print(b.i)
    print(b.j)

main()

A. Class B inherits A, but the data field “i” in A is not inherited.
B. Class B inherits A, thus automatically inherits all data fields in A.
C. When you create an object of B, you have to pass an argument such as B(5).
D. The data field “j” cannot be accessed by object b.

Show Answer

Option – A

Q-12. Which of the following statements is true?

A. By default, the __new__() method invokes the __init__ method.
B. The __new__() method is defined in the object class.
C. The __init__() method is defined in the object class.
D. The __str__() method is defined in the object class.
E. The __eq__(other) method is defined in the object class.

Show Answer

Option – A, B, C, D, and E

Q-13. What will be the output of the following code snippet?

class A:
    def __init__(self):
        self.calcI(30)
        print("i from A is", self.i)

    def calcI(self, i):
        self.i = 2 * i;

class B(A):
    def __init__(self):
        super().__init__()
        
    def calcI(self, i):
        self.i = 3 * i;

b = B()

A. The __init__ method of only class B gets invoked.
B. The __init__ method of class A gets invoked and it displays “i from A is 0”.
C. The __init__ method of class A gets invoked and it displays “i from A is 60”.
D. The __init__ method of class A gets invoked and it displays “i from A is 90”.

Show Answer

Option – D

Q-14. What will be the output of the following code snippet?

class A:
    def __init__(self):
        self.calcI(30)
        
    def calcI(self, i):
        self.i = 2 * i;

class B(A):
    def __init__(self):
        super().__init__()
        print("i from B is", self.i)
        
    def calcI(self, i):
        self.i = 3 * i;

b = B()

A. The __init__ method of only class B gets invoked.
B. The __init__ method of class A gets invoked and it displays “i from B is 0”.
C. The __init__ method of class A gets invoked and it displays “i from B is 60”.
D. The __init__ method of class A gets invoked and it displays “i from B is 90”.

Show Answer

Option – D

Q-15. Which of the following statements can be used to check, whether an object “obj” is an instance of class A or not?

A. obj.isinstance(A)
B. A.isinstance(obj)
C. isinstance(obj, A)
D. isinstance(A, obj)

Show Answer

Option – C

Q-16. What relationship correctly fits for University and Professor?

A. association
B. composition
C. inheritance
D. All of the above

Show Answer

Option – B

Q-17. What relationship is suited for the Course and Faculty?

A. association
B. composition
C. inheritance
D. None of the above

Show Answer

Option – A

Q-18. What relationship is best suited for Employee and Person?

A. association
B. composition
C. inheritance
D. None of the above

Show Answer

Option – C

Q-19. What relationship is best suited for House and Door?

A. association
B. composition
C. inheritance
D. All of the above

Show Answer

Option – B

Q-20. What relationship is appropriate for Fruit and Papaya?

A. association
B. composition
C. inheritance
D. All of the above

Show Answer

Option – C

Summary: Online Python OOP Quiz for Beginners

The scope of Python classes is significantly large. That’s why we covered the basics in this online Python quiz and targeted it for beginners. We are hoping that it’ll help all freshers succeed in their Python programming interviews.

In the next post, we’ll showcase the advanced concepts of Python classes and related topics. So let’s end this quiz with an encouraging quote.

Disliking bugs in his own code makes a better programmer.

An Unknown Programmer

Lastly, our site needs your support to remain free. Share this post on social media and subscribe to our YouTube channel.

Enjoy Coding,
TechBeamers

TAGGED:Interactive Python Quizprogramming
Share This Article
Whatsapp Whatsapp LinkedIn Reddit Copy Link
Meenakshi Agarwal Avatar
ByMeenakshi Agarwal
Follow:
I’m Meenakshi Agarwal, founder of TechBeamers.com and ex-Tech Lead at Aricent (10+ years). I built the Python online compiler, code checker, Selenium labs, SQL quizzes, and tutorials to help students and working professionals.
Previous Article Python Functions Quiz Part-2 for Experienced Programmers Python Functions Quiz Part-2
Next Article Python Online Quiz - 21 Coding Snippets. Python Quiz: Classes and Objects Part 2
Leave a Comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Most Popular This Month

  • → Python Online Compiler
  • → Python Code Checker
  • → Free Python Tutorial
  • → SQL Practice Queries
  • → Code to Flowchart Tool
  • → Python Syntax Guide
  • → Python List & Dict Questions
  • → Selenium Practice Test Page

RELATED TUTORIALS

Best Python string handling questions

Python String Handling Quiz Part-1

By Meenakshi Agarwal
4 weeks ago
Python DSA Quiz - Part 1 | Core Data Structures & Algorithms MCQ

Python DSA Quiz – Part 1 | Core Data Structures & Algorithms MCQ

By Meenakshi Agarwal
4 weeks ago
Beginners Python Data Analysis Quiz

Python Data Analysis Quiz for Beginners

By Meenakshi Agarwal
11 months ago
Python programming quiz

Python Quiz for Beginners Part-1

By Meenakshi Agarwal
4 weeks ago
© TechBeamers. All Rights Reserved.
  • About
  • Contact
  • Disclaimer
  • Privacy Policy
  • Terms of Use