C++ Implementation of Ackermann Function

By Nishant Soni

Today we will learn about the famous Ackermann recursion function using C++ program. The Ackermann function is named after Wilhelm Ackermann, this function defines exactly how ther.... Read More

C++ Program Reverse Bits of a Number

By Nishant Soni

Today we will learn how to reverse the bits of a number and display the value of the reversed number in C++ programming. For this problem we will have to use concepts of bitwise ma.... Read More

Python Tutorial | Template matching using OpenCV

By Aman Kumar

This tutorial is mainly focused on the application of OpenCV. In this tutorial, we will learn to detect the area or region in the source image using the features of the template im.... Read More

Identify Cats vs Dogs in Python using Deep Learning

By Aman Kumar

Hello guys in this tutorial we are going to build a machine learning model that detects the different categories of the animals, for example, cats vs dogs using deep learning techn.... Read More

tf-idf Model for Page Ranking in Python

By Aman Kumar

The tf-idf stands for Term frequency-inverse document frequency. It is a weighing schema that measures the frequency of every term in a document of the corpus. These weight vectors.... Read More

Implementation of Rabin Cryptosystem in Java

By Mainak Halder

Hello Learners, today We are going to learn about Rabin Cryptosystem and implement it in Java language. Rabin Cryptosystem is a public-key cryptosystem discovered by Michael Rabin..... Read More

Image Recognition in Python using Machine Learning

By Shagun Bidawatka

Image Recognition is the process of providing a category to the image. We have to train our machine and build a model that can recognize the image for this purpose we use Keras and.... Read More

Find k numbers with most occurrences in the given Python array

By Vamsi Krishna

In this tutorial, we shall find k numbers with most occurrences in the given Python array. The inputs shall be the length of the array, its elements, and a positive integer k. We s.... Read More