Find the most frequent element in an array in Java

By Shakshi Parekh

In this article, we will see a program to Find the most frequent element in an array in Java. I hope, you already have some idea about array if you are familiar with Java. but stil.... Read More

Model Evaluation Metrics in Regression Models with Python

By Infant Raju

In this tutorial, we are going to see some evaluation metrics used for evaluating Regression models. Whenever a Machine Learning model is being constructed it should be evaluated s.... Read More

How to get the extension of a file in C++

By Ranjeet V

In this tutorial, we will learn how to get the extension of a file in C++. We will create a function and pass the name of the file as an argument and give the output as the extensi.... Read More

Saving a Plot as an Image in Python

By Tushit Garg

In this article, we would learn how to save a plot as an image in python. There are times when one needs a matplotlib figure as an image file so that we can use it for other purpos.... Read More

Generate a random password of a specific length in C++

By Arjun Singh

Hello everyone in this tutorial we are going to learn how to generate a random password of a specific length in C++. We are going to start the code. What is random function? Random.... Read More

How to find the duration or length of an MP3 File in C++

By Ranjeet V

In this tutorial, we are going to learn how to find the duration or length of an MP3 File in C++.  We will use the mciSendString() function which exists in “Windows.h”.... Read More

Divide all elements of a list by a number in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn how to divide the elements of a list in Python. As we know that in List we can store elements like int, float, string, etc. As we know that .... Read More

Image Classification using Keras in TensorFlow Backend

By Snigdha Ranjith

Today, we’ll be learning Python image Classification using Keras in TensorFlow backend. Keras is one of the easiest deep learning frameworks. It is also extremely powerful an.... Read More

Related Posts