del and delattr() in Python

By Pratik Tayade

In this tutorial, we are going to discuss a function(method) and an operator that has the same purpose. The first one is delattr() and the second one is del. These two functions an.... Read More

Image Augmentation Using skimage in Python

By Amal Mathew

In this tutorial, we will learn about image augmentation using skimage in Python. The size of the dataset used while training a deep learning /machine learning model significantly .... Read More

Prufer Code to Tree Creation in C++

By Deepanjan Bose

In this article, I am going to generate a Tree from a Prufer Code using C++ with example. I hope you will enjoy this tutorial. At first, we have to know the definition of prufer co.... Read More

Convert a Matrix to a Sparse Matrix in Python

By Shagun Bidawatka

To covert the matrix into the sparse matrix in Python we first need to understand what is sparse matrix and why it is used. So here we will learn about it and along with it, we wil.... Read More

Fermat Factorization method in Java

By Alok Sinha

Here we will see about Fermat Factorization Method in Java. Fermat Factorization method is based on the evaluation of an odd integer value as it differs from two squares. This was .... Read More

std::bsearch in C++ with examples

By Palani M

In this tutorial we will learn about std::bsearch function and how it works in C++. As the name suggests, it stands for binary search. We will explain how binary method of searchin.... Read More

mbrtoc16() and mbrtoc32() in C++ with examples

By Karun Thannickal

In this tutorial, we will learn about the mbrtoc16() function and mbrtoc32() function in C++. They are both declared in the cuchar header in C++. We use these functions to work wit.... Read More

Create a Port Scanner in C++

By Karun Thannickal

In this tutorial, we will learn about how to create a simple Port Scanner in C++. Port scanners are programs that attempt connection to the server via the specified ports. We use t.... Read More