Whether a number is Harshad number (niven) or not in C++

By Siddharth Chhabra

In this tutorial, we are going to learn how to check if a number is a Harshad number (Niven number ) or not in C++ with a simple and easy program. Harshad or Niven number in C++ An.... Read More

Compress an image to minimize memory size in Python

By Ashutosh Srivastava

According to various surveys conducted it is seen that around 60-65% of the internet traffic consists of the images. The media-rich websites see to it that their images are optimiz.... Read More

How to find the sum of the numbers in the given string in Python

By Bipin Kumar

In this tutorial, We will see How to find the sum of the numbers in the given string in Python. This tutorial is based on the Regular expression or regex module i.e re module. So.... Read More

Python program to draw a pie chart that shows the daily activity

By Bipin Kumar

In this tutorial, we will see how to draw a pie chart that shows the daily activity in Python. A pie chart represents numbers in percentages, and the total sum of all segments ne.... Read More

Calculate the occurrence of specific character in given string in C++

By Yash Shakya

This C++ program is able to calculate the occurrence of a character in a given string. The program involves the application of character array and loop statements. The logic is use.... Read More

How to find product of given two matrices in C++

By Yash Shakya

In this program, we are going to find the product of given two matrices in C++ with some basic commands and nested loop. This problem is based on the application of array. The logi.... Read More

Which is better Array or LinkedList

By Darshna Patil

Hi there people! You must have used both Array and LinkedList at some point in your coding journey. They are very interesting topics and useful in many situations. As we all know A.... Read More

Juggling Algorithm for array rotation using java

By Anubhav Srivastava

Hi coders! I am back with a new problem which is related to a  famous data Structure Array. Many of you people definitely have solved the array rotation problem. There are various.... Read More

Related Posts