Strings in JavaScript with examples

By Anil Kumar Sharma

Today, we are going to learn about strings in JavaScript. What are the Strings? Strings are used for storing character-based data which we can manipulate also. Basically, it is the.... Read More

Analog timer using turtle module in Python

By Rohan Harish

In this tutorial, let’s build an analog timer using turtle in Python. Let us have circular representation of hours, minutes and seconds as distance traversed by the respectiv.... Read More

C++ program to calculate the difference between two time periods

By Gagana Gonchikar N

In this tutorial, we’ll learn how to calculate the difference between two given time periods in C++. The time periods should be provided by the user. The user can provide two.... Read More

Calculate Hamming Distance of two binary strings in C++

By Himanshu Raj

In this tutorial, we will learn how to calculate Hamming Distance of two binary strings in C++. Hamming distance is the number of bits positions in which two numbers differ while c.... Read More

Move all files and specific files from one directory to another using shutil module in Python

By Rohan Harish

In this tutorial, we will learn about moving files from one directory to another using Python’s shutil module. Here we make use of shutil.move() method to move files from sou.... Read More

How to print particular JSON value in Python

By Shrimad Mishra

Hi, everyone in this post we will learn how we can print particular JSON value in Python. what is the JSON file? JSON stands for JavaScript Object Notation and it is used to store .... Read More

C++ program to Count the number of subarrays having given XOR

By Sakshi Singh

In this tutorial, We will learn how to implement an efficient C++ program to count the number of subarrays having the given XOR. Consider an array A[] and a given number B, We have.... Read More

Reach a desired array in minimum steps with limited operations in Python

By Rohan Harish

In this tutorial, we are going to start with a zero array (that is an array/list of all zeros) and arrive at a desired array in Python by using a combination of two operations of e.... Read More

Related Posts