Count Number of zeros in an integer using recursion in C++

By Bhargav

In this tutorial, you will learn how to count the number of zeros in an integer by using recursion in C++. Counting the number of zeros can be done in different ways recursion is o.... Read More

Detect offensive words in Python

By Sumit Chhirush

In this tutorial, we will learn how to Detect offensive words in Python. What are offensive words? Offensive words are irritating, angering, or annoying words. Examples: Arse, Bloo.... Read More

Build a count down in Node.js

By Siddharth Saurav

Hello programmers, In this article I will show you how we can build a simple countdown app in Nodejs. Before we get started with the building process, we need to know a few concept.... Read More

How to find first index of an integer in an array in C++

By Bhargav

In this tutorial, you will learn how to write a program to find the first index of a number in an array in C++. The first index of a number is the index value when the number appea.... Read More

How to plot a histogram in Python using matplotlib

By Hussain Quadri

In this tutorial, we will learn how to plot a histogram in Python using Matplotlib. Histogram in Python using Matplotlib Firstly, we will look at what is a histogram? A histogram i.... Read More

Remove duplicate words from a string in Python

By Sumit Chhirush

In this tutorial, we are going to learn about how to Remove duplicate words from a string in Python along with some examples. What are duplicate words/strings in a string? Duplicat.... Read More

Cool copy to clipboard button using HTML CSS and JavaScript

By Ankit

Hello friends, in this tutorial, we will learn how to Cool copy to clipboard button using HTML, CSS, and JavaScript. This is a process in which we copy programs, images, and other .... Read More

How to terminate a Node.js program

By Siddharth Saurav

Hey programmers. In this tutorial, I will explain to you how can we terminate a Node.js app. There are two methods explained in this tutorial. Method 1: Using the ctrl+C key When r.... Read More

Related Posts