In Python, a string is a sequence of characters enclosed in quotes. You can use single quotes (‘), double quotes (“), triple single quotes […]
Read moreCategory: Important
Program 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 morePython tutorials
Python tutorials for beginners Python Operators In Python programming, Operators in general are used to perform operations on values and variables. These are standard […]
Read moreC++ Program to Add Two Given Numbers
C++ Program to Add Two Given Numbers C++ Program to Add Two Given Numbers #include <iostream> using namespace std; int main() { int input1, […]
Read moreFind the largest number among three number in C++
Find the largest number among three number in C++ Find the largest number among three number in C++ #include <iostream> using namespace std; int […]
Read moreFind largest element of an array in C++
Find largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { […]
Read more
Recent Comments