C++ program to find the last Saturday of each month in a given year

By Gagana Gonchikar N

In this tutorial, we’ll learn how to find the last Saturday of each month in a given year in C++. Let us see an example of how this program works Enter the year: 2020 January.... Read More

Scientific Calculator GUI in Python using Tkinter

By Saruque Ahamed Mollick

In this tutirial, we are going to build our own Scientific Calculator using Tkinter library of Python. This tutorial is originally written by Rahul Roy To download the full project.... Read More

Matrix transpose using Armadillo in C++

By Shubham Kumar Singh

Fellow coders, in this tutorial we are going to learn about matrix transpose using a high-quality linear algebra library in C++ called ‘armadillo’. Before we move on wi.... Read More

Using bfloat16 with TensorFlow models in Python

By Shubham Kumar Singh

Fellow coders, in this tutorial we are going to learn how to use ‘bfloat16’ with TensorFlow models in Python. When using bfloat16 as opposed to 32 bit often proves to b.... Read More

C++ program to count the number of sentences from a text file

By Gagana Gonchikar N

In this tutorial, we’ll learn how to count the number of sentences from a text file using C++ programming language. Here the text file name can be anything as per the user wi.... Read More

Pie chart in Python using Seaborn

By Shubham Kumar Singh

Fellow coders, in this tutorial we are going to plot a Pie chart in Python with the help of Seaborn and Matplotlib. We will learn about data visualization and what is the benefit o.... Read More

Get ID of parent element in JavaScript DOM

By Faruque Ahamed Mollick

Often it may be required to get the ID of the parent element of a child element in an HTML document to perform task. So here, I am going to show you the easiest way to get the ID o.... Read More

Calculate Derivative Functions in Java

By Shubham Kumar Singh

Fellow coders, in this tutorial we are going to learn how to calculate the derivative of a function in Java. As we all know that, the derivative of a function measures the change i.... Read More

Related Posts