Min-Max Normalization on a Data Set in Java

By Vaishnavi Penumerthy

Hey Guys, In this article, we will learn about Min-Max Normalization and implement it in Java for a given data set. What is data normalization? Data normalization is a technique to.... Read More

How to Initialize multidimensional array with zeros in C++

By Himanshu Sharma

In this tutorial, we will learn to initialize the multidimensional array with zeros in C++. There are multiple approaches to do this task. Two of them are given below: First Approa.... Read More

Increment number by 1 in Python

By Varsha Neelamma

In this tutorial, you will learn how to increment a number by 1 in Python. If you are used to programming in languages like C++ and Java, you will be acquainted with using the incr.... Read More

Save multiple matplotlib figures in single PDF file – Python

By Meha Nair

In this tutorial, we will look into how multiple plots can be saved in a single pdf file. In many cases, we require our output to be in a particular format, which we can easily obt.... Read More

C++ program to find Pythagorean triplets within given limit

By Pyata Sandeep

In this tutorial, we will be working on finding the Pythagorean triplets under the given limit in C++. Here, the triplets will be found based on interesting math formulas. Method: .... Read More

Microsoft Stock Price Prediction with Machine Learning

By Devansh Parikh

In this project, I have used a machine-learning algorithm to predict the stock price of one of the largest tech companies named Microsoft using Python. Dataset Link: MSFT.csv Step-.... Read More

Perfect Binary Tree Specific Level Order TraversalĀ in C++

By Ashutosh Khandelwal

Hello coders! In this tutorial, we will learn how to write the C++ program for Perfect Binary Tree Specific Level Order Traversal. Basically here, we are going to learn how to find.... Read More

How to comment multiple lines in Python?

By Varsha Neelamma

In this tutorial, we will learn if and how you can comment multiple lines in Python. Before we dive into this tutorial, let us first understand what a comment is. Whenever you buy .... Read More