Destructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreCategory: Coding
Some programs of loop in Python
Program of loop in Python Python program to print a multiplication table of a given number. # if the given range is 10 given_number […]
Read moreTypes of Constructor in C++
Types of Constructor in C++ Types of Constructor in C++ There are three types of Constructor : 1. Default Constructor 2. Parameterized Constructor 3. […]
Read moreConstructor in C++
Constructor in C++ Constructor in C++ Constructor is a member function of a class , whose name is the same as the class name […]
Read moreConcepts of OOPs in C++
Concepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreOOPs Concepts in C ++
OOPs Concepts in C++ OOPs Concepts in C++ OOPs stands for Object Oriented Programming . An object oriented programming language uses object in its […]
Read moreLoop in Python
Loop in Python In Python, loops are used to iterate over a sequence (like a list, tuple, dictionary, set, or string) or to repeat an […]
Read moreString in Python
In Python, a string is a sequence of characters enclosed in quotes. You can use single quotes (‘), double quotes (“), triple single quotes […]
Read moreProgram To Find Area and Perimeter of Rectangle
Program To Find Area and Perimeter of Rectangle Program To Find Area and Perimeter of Rectangle #include<iostream> using namespace std; int areaRectangle(int a, int […]
Read moreData types in Python
-Data types in Python – Python provides a variety of built-in data types that allow you to handle different kinds of data effectively. Here […]
Read more
Recent Comments