All Easy Articles
Frame Check Sequence (FCS) refers to extra bits added to the frame for error detection. It is used for HDLC error detection. It is 2… Read More
Skewness is an important statistical technique that helps to determine asymmetrical behavior than of the frequency distribution, or more precisely, the lack of symmetry of… Read More
Given two polynomial numbers represented by a linked list. Write a function that add these lists means add the coefficients who have same variable powers.Example:  … Read More
The web address was developed by Sir Tim Berners-Lee and the URL working group of IEFT (Internet Engineering Task Force) in the year 1994. It… Read More
Breadth First Traversal (or Search) for a graph is similar to Breadth First Traversal of a tree (See method 2 of this post ). The… Read More
Given two linked lists, insert nodes of the second list into the first list at alternate positions of the first list. For example, if first list… Read More
Sometimes also known as cloning, basically the prototype is a generative design pattern that allows you to copy objects without making your code dependent on their… Read More
Spring Tool Suite (STS) is a Java IDE tailored for developing Spring-based enterprise applications. It is easier, faster, and more convenient. And most importantly it… Read More
In this article, we are going to see how to Train, Test and Validate the Sets. The fundamental purpose for splitting the dataset is to… Read More
In this article, we’re going to build a Space Bullet shooter game using PyGame in Python.  The used file can be downloaded from here. Approach:… Read More
In this article, we are going to see memory consumption in dictionaries and a list of tuples. Memory Consumption by dict vs list of tuples… Read More
In this article, we will see the Canny Edge filter in OpenCV. Canny() Function in OpenCV is used to detect the edges in an image.… Read More
The first two decades of the 21st century have seen exponential advancements in technologies that were once considered elements solely belonging to a sci-fi movie… Read More
The number system is nothing but just the representation of different kinds of numbers on the number line (for example, integers, whole numbers, rational numbers,… Read More
Given an array arr[] of N integers, the task is to find the minimum insertion or deletion operations required to make the frequency of each… Read More
Given an array S of strings of size N, the task is to check if it is possible to make all strings equal in any… Read More
prerequisite: C++ Classes and Objects Different Ways to Instantiate an Object In C++, there are different ways to instantiate an objects and one of the… Read More
C programming language supports four pre-defined functions to read contents from a file, defined in stdio.h header file: fgetc()– This function is used to read… Read More
A particle moving in a 1-dimensional space requires only one coordinate to specify its position. In two dimensions similarly, two coordinates are required. Three-dimensional motions… Read More
Given an array, only rotation operation is allowed on array. We can rotate the array as many times as we want. Return the maximum possible… Read More