URL Encoding and Decoding using Java

By Anisha Gupta

In this tutorial, we will learn to encode and decode the given URL in Java using two utility class. What is the URL? URL or Uniform Resource Locator is a means to find resources on.... Read More

Rabin Cryptosystem Implementation in C++

By Siddhant Chouhan

Rabin Cryptosystem is an asymmetric cryptography algorithm that is based on quadratic congruence. This cryptography technique involves a private key pair(p,q) and a public key n. T.... Read More

Find MAC address of Linux Device in C++

By Siddhant Chouhan

In this post, we will learn how to find the MAC address of a Linux Device by using a C++ program. With the help of this tutorial, you will be able to easily find out the MAC addres.... Read More

Sketch Pad in HTML5 and JavaScript

By Mayank Bhandari

In this tutorial, we will learn how to make a Sketch Pad In HTML5 and JavaScript that can draw on the browser. Firstly, why we need a sketch pad. Sketch pad may not look useful whi.... Read More

Find bitonic point in given bitonic sequence in Python

By Vamsi Krishna

Before finding the Bitonic point in a given Bitonic Sequence in Python, let us first understand these terms and various cases. A Bitonic Sequence is a sequence that is initially st.... Read More

How to find the maximum element in an array which is first increasing and then decreasing in Python

By M Ashok

In this tutorial we will learn how to find the maximum element in an array, a solution is using the function of max(). Now we will see the code to find the maximum element without .... Read More

How to find the longest word in a text file in C++

By Arpit Jain

Hi guys, today we will see how to find the longest word in a text file in C++. Before we start with this topic, I would like to tell you the methods to read a file. Methods To Read.... Read More

Structure Inheritance vs Class Inheritance in C++

By Arpit Jain

Hi guys, today we will see the structure inheritance vs class inheritance in C++ with example programs. So let me first define what is inheritance. INHERITANCE: It is the property.... Read More

Related Posts