Concepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreMonth: May 2024
OOPs 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 moreProgram To Find Simple Interest
Program To Find Simple Interest Program To Find Simple Interest #include<iostream> using namespace std; int main() { Β Β float P , R , T […]
Read moreFew Examples of Python that use conditional statements
Here are a few examples of Python programs that use conditional statements to demonstrate different concepts: Example 1: Check if a number is positive, negative, […]
Read moreCheck the Number is Palindrome or not
Check the Number is Palindrome or not Check the Number is Palindrome or not #include <iostream> using namespace std; int main() { int n, […]
Read moreConditional Statements in Python
# if statement exampleΒ if 10 > 5: print(“10 greater than 5”) print(“Program ended”) —-Output—- 10 greater than 5 Program ended 2. […]
Read more
Recent Comments