Ads block
Abstraction in Python
Abstraction Abstraction means hiding the non essential details and showing only essential detail .Abstraction is used to hide the internal functionality of th…
Read more »
Method Overriding in Python
Method Overriding Method overriding is a type of polymorphism in which a child class which is extending the parent class can provide different definition…
Read more »
Method Overloading in python
Method Overloading Method overloading or function overloading is a type of polymorphism in which we can define a number of methods with the same name but…
Read more »
Polymorphism in Python
Polymorphism Polymorphism contains two words " poly " and " morph ", poly means many and morphs means forms , shape . By polymorphism, …
Read more »
Types of Inheritance
Type of Inheritance Depending upon the number of child and parent classes involved, there are four types of inheritance in python. Single Inheritance. Multip…
Read more »
Inheritence in Python
Inheritence Inheritence is the most important aspect of object oriented programming which simmulates the real world concept of inheritence. It specifies …
Read more »
Encapsulation in Python
Encapsulation Encapsulation is the process of making groups of objects . Encapsulation means binding variables and methods under single entity. In enc…
Read more »
SEARCH
LATEST
3-latest-65px
SECCIONS
Search This Blog
Powered by Blogger.
Blog Archive
- July 2023 (1)
- January 2023 (4)
- December 2022 (1)
- May 2022 (1)
- December 2021 (4)
- November 2021 (12)
- October 2021 (2)
- August 2021 (1)
- July 2021 (19)
- June 2021 (5)
- May 2021 (29)
- April 2021 (11)
- March 2021 (3)
Operators in C
Operators An operator is a symbol that tells the compiler to perform specific mathematical or logical operations, based on the value provi...