Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreTag: programming
Python function
Python Function Python Functions is a block of statements that return the specific task. The idea is to put some commonly or repeatedly done tasks […]
Read moreVirtual Function in C++
Virtual Function in C++ Virtual Function in C++ Virtual Function is one of the advances features of OOPs .Β A virtual function (also known as […]
Read moreOperator Overloading in C++
Operator Overloading in C++ Operator Overloading in C++ In C++, Operator overloading is a compile-time polymorphism. It is an idea of giving special meaning […]
Read moreDestructors in C++
Destructors in C++ Destructors in C++ DESTRUCTOR A Destructor is also a special member function like a constructor .Β A destructor destroys the class […]
Read moreSome 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 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 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 moreTypecasting in Python
Type casting in PythonΒ Type Casting is the method to convert the Python variable data type into a certain data type in […]
Read more
Recent Comments