Random nextGaussian() method in Java

By Ishika Koytekar

In this tutorial, we are going to learn about the nextGaussian() method which is present in the Random class in Java. It is used to generate the next pseudorandom Gaussian double v.... Read More

How to create dynamic variable name in Python

By Yashkumar Patel

A dynamic variable name, sometimes called a variable, is a variable with a name that is the estimation of another variable. Despite the fact that Python is a very dynamic language .... Read More

How to check if a date is a weekend or not in Java

By Tishya Thakkar

In this tutorial, we will learn how to check if a date is a weekend or not in Java. To do this we will use the LocalDate class in Java as shown below. We will use this as we are ju.... Read More

Find the second-highest number in an ArrayList in Java

By Ishika Koytekar

In this tutorial, we are going to learn how to find the second-highest number in an ArrayList in Java. ArrayList is present in java.util package and it provides a dynamic approach .... Read More

Random Singly Linked List Generator using Python

By Deepak

Generating random singly linked list using Python having elements (numbers, primes, alphabets) Initialize Node for linked list Singly Linked List data structure is created with ins.... Read More

How to change the format of date from dd/mm/yyyy to mm/dd/yyyy in Java

By Smitha S Maganti

In this demo, we are going to learn how to change the format of date from ‘dd/mm/yyyy’ to ‘mm/dd/yyyy’ using Java programming language. Java program to chan.... Read More

Dogecoin Price Prediction with Machine Learning

By Devansh Parikh

In this tutorial, I have used a machine-learning algorithm to predict the future price of Dogecoin (a cryptocurrency). I am going to use Python as the programming language. Dataset.... Read More

Extract current stock price using web scraping in Python

By Arpitha

In this tutorial, we will learn about extracting current stock prices from https://finance.yahoo.com/  using Python. Installing the libraries Initially, there are some libraries w.... Read More

Related Posts