String join() Method in Python

By Sanskar Dwivedi

This article is about the String join() Method in Python and how to use it with different iterable objects of Python. join() is a string method whose return type is also a string i.... Read More

How to take user input in HTML form and store in JavaScript variable

By Samim

In this tutorial, we will learn how to take user input in HTML form and store it in a JavaScript variable. And then, we can do whatever we want to do with it like mathematical oper.... Read More

Passing Multiple Arguments to Function in Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to pass multiple arguments to a function in Python. Routine and Function Before we start, we should understand what a routine an.... Read More

How to find the last index of an integer in an array in C++

By Bhargav

In this tutorial, we will write a program to find the last index of an integer in an array in C++. There are different ways to write code to a problem, To find the last index of a .... Read More

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

Related Posts