ObjectInputStream registerValidation() Method in Java

By Sri Vikas Prathanapu

In this tutorial, you will learn how to use the registerValidation() method in Java. First, you should know about the ObjectInputStream class which contains registerValidation() me.... Read More

A C++ program for Unrolled List

By Srirama Charan

In this tutorial, we will see how to implement an Unrolled Linked List in C++. Unrolled Linked List is a variation of the normal Linked List where more than one element is stored a.... Read More

Duplicate elements within k distance from each other in Python

By Sri Vikas Prathanapu

In this tutorial, we will learn how to check if a given array contains duplicate elements within k distance from each other in Python. In a given unsorted array with a given value .... Read More

getproperty() and getproperties() methods in Java

By Sri Vikas Prathanapu

In this tutorial, you will learn about getproperty() and getproperties() in Java. Before knowing about getproperty() and getproperties() let us see about a system(). The Java syste.... Read More

Check if a given binary tree is perfect or not in Python

By Yatharth Jain

The problem in hand is checking whether a given binary tree is perfect or not. So, before talking about Perfect binary tress let us first talk about binary trees. A binary tree is .... Read More

Implementation of Perceptron Algorithm for NOR Logic with 2-bit binary input in Python

By Prantik Sarkar

Fig: NOR gate In this article, you’ll learn how to implement the NOR logic with 2-bit binary input using the perceptron algorithm in Python. The steps that we’ll follow.... Read More

Implementation of Perceptron Algorithm for AND Logic with 2-bit binary input in Python

By Taanvi Goyal

Before we start the implementation question arises What is Perceptron? Perceptron is an algorithm in machine learning used for binary classifiers. It is a supervised learning algor.... Read More

OpenCV Image Thresholding Techniques – Python

By Taanvi Goyal

OpenCV Image Thresholding is one of the popularly used technique in OpenCV. Thresholding is the assigning of pixel values in relation to the given threshold value. It is a segmenta.... Read More

Related Posts