Python Program to check whether given number is a Moran Number or not

By Abinash Reddy

In this article, we will learn how to check whether the given number n is a Moran Number in Python. A number is said to be Moran Number if it is divisible by the sum of its digits.... Read More

C++ program to find largest node in a Doubly linked list

By Abinash Reddy

In this article, we will learn how to find the largest node in a Doubly linked list in C++. A doubly linked list is a type of linked list where every node has three fields 1. data .... Read More

C++ program to find the second largest element in a Linked list

By Abinash Reddy

In this article, we will learn to find the second largest element in a Linked list in C++. A linked list is a linear collection of data(nodes) that are stored randomly in the memor.... Read More

How to highlight a row in Pandas Data frame in Python

By Sadhu Meghana

In this tutorial, we are going to learn how to highlight a row in Pandas Dataframe in Python. To achieve this, we use apply() function of the Styler class. Styler.apply() function .... Read More

Convert an HTML table to pandas Dataframe

By Sadhu Meghana

Using Python, let us understand how to convert an HTML table to a pandas data frame. HTML provides us with <table> tag for storing data in table format. Pandas library has re.... Read More

How to store JavaScript variable value in PHP variable

By Shristi Rani

In this tutorial, we will learn how to store a JavaScript variable value in PHP variable value.  Since one runs on the server side and one runs on the client side. Hope this tutor.... Read More

How to change column type in Pandas Python

By Sadhu Meghana

Let’s look at different ways of changing datatypes of columns in Python. We come across many situations where there is a need for datatype casting while working with datasets.... Read More

Multithreading in C++

By Shubhobroto Mukherjee

In this tutorial, we will learn about multithreading and how we can make use of multithreading in C++. Threads in C++ A thread is a logical or basic unit of a process. Thread in C+.... Read More

Related Posts