OOPs

Operator Overloading in Python

Operator overloading refers to providing meaning that extends beyond their predefined operational meaning. For example, the operator + can be…

1 year ago

Static Keyword in Python

Class or Static Variables: In Python, a variable declared within a class but outside any method is referred to as…

1 year ago

Polymorphism in Python

What is Polymorphism? Polymorphism is derived from the Greek words poly (many) and morphism (change) (forms). That is, the same…

1 year ago

Method Overriding in Python

Method overriding is a feature of any object-oriented programming language that allows a subclass or child class to implement a…

1 year ago

Access Modifiers in Python

When implementing the concepts of inheritance in Python code, access specifiers or access modifiers are used to restrict the access…

1 year ago

Object-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…

1 year ago

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…

2 years ago

Character class in Java

In java.lang package, Java includes a wrapper class called Character. A single field of type char is contained in a…

2 years ago

Boolean class in Java

In java.lang package, there is a wrapper class Boolean. A value of the primitive type boolean is wrapped in an…

2 years ago

Double class in Java

The Double class is a wrapper class for the primitive type double. It contains several methods for dealing with double…

2 years ago