Sponsor Area
NCERT Solutions for Class 12 Computer And Communication Technology Computer Science With Python Chapter 4 Inheritance
Inheritance Here is the CBSE Computer And Communication Technology Chapter 4 for Class 12 students. Summary and detailed explanation of the lesson, including the definitions of difficult words. All of the exercises and questions and answers from the lesson's back end have been completed. NCERT Solutions for Class 12 Computer And Communication Technology Inheritance Chapter 4 NCERT Solutions for Class 12 Computer And Communication Technology Inheritance Chapter 4 The following is a summary in Hindi and English for the academic year 2025-26. You can save these solutions to your computer or use the Class 12 Computer And Communication Technology.
Write two methods in python using concept of Function Overloading (Polymorphism) to perform the following operations:
(i) A function having one argument as Radius, to calculate Area of Circle as 3.14#Radius#Radius
(ii) A function having two arguments as Base and Height, to calculate Area of right-angled triangle as 0.5#Base#Height.
def Area(R):
print 3.14*R*R
def Area(B,H):
print 0.5*B*H Sponsor Area
Mock Test Series
Mock Test Series



