Generate random 2D array in C++

By Neeraj Dusa

In this tutorial, we will learn how to generate a random 2D array in C++. We use rand( ) and srand( ) functions in this tutorial. Please refer How to generate random numbers betwee.... Read More

Generate random number between 1 to 100 in C++

By Neeraj Dusa

In this tutorial, we will see how to generate a random number between 1 to 100 in C++. rand( ) function in C++ It’s an inbuilt function in c++, which returns a random number .... Read More

Extracting Title and headers of a Web Page using BeautifulSoup in Python

By Sai Mukesh Reddy Gutha

Hello Coder! In this article, we are going to learn how to extract the title of a web page using BeautifulSoup in Python. What is BeautifulSoup? BeautifulSoup is a Python library t.... Read More

Real time Currency conversion Java GUI application using fixer io API

By Kratika Jain

In this tutorial, we will learn how to create convert currency applications using fixer io API. Before continuing make sure that you go through the below article:- Introduction to.... Read More

How to add a column to a NumPy array in Python

By Nikhil Vaddipati

Hello folks, in this tutorial we are going to learn how to add a column to a NumPy array in Python language. Two methods are discussed below. It is obvious that we need to import N.... Read More

Sort an array and remove the duplicate elements in C++

By Tanmaay Kankaria

In this article, we are going to learn how to sort an array and remove the duplicate elements in C++. We first get the array size and the array elements from the user. As we want t.... Read More

Loan Eligibility prediction using Machine Learning Models in Python

By Kanduri Jayanth Sri Ram

In this tutorial, you will learn how to predict the loan status using machine learning models in Python. Loan Eligibility prediction using Machine Learning Steps involved: Loading .... Read More

Creating Analog Clock using PyQt5 in Python

By Tuhin Mitra

In this post, I’ll show how to create an Analog Clock using PyQt5. I am using Python 3.7 throughout all the programs and this should work fine in Python3.8 also. The analog c.... Read More