java.lang.Long.lowestOneBit() method with examples

By Abhishek Kaushik

Hello Friends, in this tutorial we look at an inbuilt method java.lang.Long.lowestOneBit() in Java. Here we talk about, what is the parameter, what it takes, what it returns and ho.... Read More

Vehicle detection in Python using OpenCV

By Harsh Parmar

In this tutorial, we will learn how to detect multiple vehicles in the same frame. We will use the OpenCV Python library to perform this task. Install Python OpenCV library on your.... Read More

Solve Word Break Problem using Backtracking in Python

By Megha J Panicker

In this tutorial, we are going to solve the Word Break Problem using Backtracking and the programming language we’re using is Python. Here the problem is that we are given a .... Read More

Runs Test of Randomness in Python Programming

By Aniket Yadav

In this tutorial, we will learn about Randomness in Python and how to test it. Have you ever used function “random” in your Python code? Do you know how random your val.... Read More

Solve K Centers problem in Python

By Pratik Tayade

Hi everyone, in this tutorial we are going to discuss the K Centers problem in Python and see how we can solve it. In brief, we can be called K Centers as Metric k Center problem w.... Read More

Find a Fixed Point in a given array in Python

By Vaibhav Maini

In this lesson, we will understand how to find a fixed point in a given array in Python and also we will take a easy code to understand it much better. Explanation Array is a speci.... Read More

Intrusion Detection model using Machine Learning algorithm in Python

Intrusion Detection model using Machine Learning algorithm in Python

By Prantik Sarkar | November 5, 2020

The internet is the world’s marketplace. For any business to be eminent, a computer network is certainly going to be necessary. Connecting your business to the internet greatly expands its reach,  value, and effectiveness. However, when you connect your business to a network, security becomes a critical concern as your data becomes prone to attack […] Read More

Heap Sort for decreasing order using min heap in Java

By Prachi Paunikar

In this tutorial, we are going to find the given numbers or nodes in descending order using Heap Sort using Java (core) language. We will see an easy program to print the numbers f.... Read More