hamming code in C++

By Alok Singh

In this tutorial, we will learn how to find the Hamming code of binary data with a solved example and C++ program. Hamming code is error-detection and error-correction code which .... Read More

Append content of one file to another in C++

By Bhupen Pal

In this tutorial, we will learn how to append the content of one file to another file in C++. C++ is a general-purpose object-oriented programming language developed by Bjarne Stro.... Read More

Python program to interchange first and last elements in a list

By Asma Khan

In this tutorial, we will learn how to interchange or swap first and last element of a list in python.  This problem can be solved using basic techniques. This task asks you to in.... Read More

How to find Run Length Encoding in C++

By Alok Singh

In this tutorial, we will learn about the Run Length Encoding (RLE) with example and C++ program followed by the algorithm. Run Length Encoding is a very simple form of lossless da.... Read More

Check if a string contains a specific word or not in PHP

By Ujwal Kumar Sahoo

In this article, we are going to see how to check if the occurrence of a specific word in a string using PHP. It can be done by matching the search string with the source string. W.... Read More

How to find the sum of the given two matrices in C++

By Yash Shakya

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

Hangman game in Java

By Vedant Nandkumar

In this Java Program, we implement the popular game Hangman in Java. So let’s start learning how to create a hangman game in Java. Overview of Hangman game in Java: Firstly, .... Read More

Simple Interest Program in Java

By Akash Tripathi

Hello guys, hope you are having a great day. Today we will see how to calculate Simple Interest in Java. The program remains the same as that of compound interest, only the formula.... Read More

Related Posts