0% found this document useful (0 votes)
3 views1 page

Advanced Python OOPs Functions Questions

The document outlines a series of advanced Python coding questions. It includes tasks such as creating classes with specific functionalities, demonstrating object-oriented programming concepts like inheritance and encapsulation, and implementing functions using recursion and higher-order functions. Additionally, it covers the use of abstract classes and sorting techniques in Python.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Advanced Python OOPs Functions Questions

The document outlines a series of advanced Python coding questions. It includes tasks such as creating classes with specific functionalities, demonstrating object-oriented programming concepts like inheritance and encapsulation, and implementing functions using recursion and higher-order functions. Additionally, it covers the use of abstract classes and sorting techniques in Python.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Advanced Python Coding Questions

1. Create a Student class with constructor and display method.

2. Demonstrate method overriding using Animal, Dog, and Cat classes.

3. Create a BankAccount class using encapsulation.

4. Create Employee and Manager classes using inheritance.

5. Demonstrate multiple inheritance using Father, Mother, and Child classes.

6. Write a recursive factorial function.

7. Sort student tuples using lambda function.

8. Write a function using *args and **kwargs.

9. Create an abstract Shape class with Rectangle and Circle subclasses.

10. Use map() and filter() functions on a list.

You might also like