A C++ Program to Check Whether an Entered Character is lowercase or Uppercase

By Isha Prasad

Hello Learners, In this article, we will learn some easy concepts about characters and their ASCII Codes. English Alphabets are either Uppercase or Lowercase. We can easily tell wh.... Read More

How to Find Sum of Digits of a Number using Recursion in C++

By Isha Prasad

Hello Learners, In this session, we will get familiar with Recursion/Recursive Function. This program deals with two functions. One is the main and another one is the recursive fu.... Read More

Program to illustrate scatter in terms of tuple in Python

By SNEHA S

So, in this article, we will see Python functions that can take up variable length arguments. In many cases, we will have to deal with variable number of arguments depending upon t.... Read More

Sides of right angled triangle from given area and hypotenuse in Python

By Abinash Reddy

In this article, we will learn how to find all the sides of a right-angled triangle from a given area and hypotenuse in Python. Examples Input: hypotenuse = 10, area = 24 Output: B.... Read More

Program to store a sparse matrix as a dictionary in Python

By SNEHA S

In this tutorial, we will learn how to store sparse matrix in an efficient way by using dictionary in Python. Many times we come across situations, where the memory is wasted for s.... Read More

Check Whether a Matrix is Diagonal or not in C++

By Isha Prasad

Hello Learners, This session is based on basic matrix-related problems in C++. We usually solve it mathematically. But, here in different computer languages, we call it a 2-D array.... Read More

C++ Program to Shift Every Element of An Array to Circularly Right

By Isha Prasad

Hello Learners, In this particular article, we are going to learn how to Circularly Right Shift Every Element of an Array in C++. The array can be user-defined or as well as by def.... Read More

Adding logic to the game part-2 day#10

By K. Boopathi

Hello, guys welcome back today. We are at the last day of learning react fundamental in 10 days. This is part-2 of adding logic to the game if you don’t check part-1 check th.... Read More