Tag: OOPs
-
pythonOperator Overloading in Python
Operator overloading refers to providing meaning that extends beyond their predefined operational meaning. For example, the operator + can be…
December 18, 2022
-
pythonStatic Keyword in Python
Class or Static Variables: In Python, a variable declared within a class but outside any method is referred to as…
December 17, 2022
-
pythonPolymorphism in Python
What is Polymorphism? Polymorphism is derived from the Greek words poly (many) and morphism (change) (forms). That is, the same…
December 16, 2022
-
pythonMethod Overriding in Python
Method overriding is a feature of any object-oriented programming language that allows a subclass or child class to implement a…
December 15, 2022
-
pythonAccess Modifiers in Python
When implementing the concepts of inheritance in Python code, access specifiers or access modifiers are used to restrict the access…
December 13, 2022
-
pythonObject-Oriented Programming in Python
What Is Object-Oriented Programming? Alan Kay coined the term “Object-Oriented Programming” (OOP), also known as oops concepts in Python, in…
December 8, 2022
-
C++OOPs Concepts in C++
Object-oriented programming (OOPs) is a programming approach or pattern in which programs are structured around objects rather than functions and…
September 20, 2022
-
JavaCharacter class in Java
In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…
August 27, 2022
-
JavaBoolean class in Java
In java.lang package, there is a wrapper class Boolean. A value of the primitive type boolean is wrapped in an…
August 27, 2022
-
JavaDouble class in Java
The Double class is a wrapper class for the primitive type double. It contains several methods for dealing with double…
August 27, 2022