Find recurring sequence of a fraction in C++

By Ronak Jethava

So, guys today we will learn How to find the recurring sequence of a fraction in C++. Let’s do it together. A recurring decimal is a decimal number that has a pattern then repeat.... Read More

Short Circuiting Techniques in Python

By Vivek Bisht

In this tutorial, we are going to learn the techniques used for short-circuiting in Python. Basically short-circuiting means that the stoppage of the Boolean expression. In this te.... Read More

Python program to find smallest prime divisor of a number

By Vivek Bisht

In this tutorial, we will learn how to get the smallest prime divisor or we can say the smallest divisor of a number in Python program. There are some steps given below for finding.... Read More

Simple Student Management System Program in Python without Database

By Saumitra Deshpande

In this blog, we are going to see how to create a simple student management system using Python. We are not going to use any database here. This is just a simple program. The opera.... Read More

A program to demonstrate MagicSquare in Python

By Ashi Agrawal

In this article, we are going to study Magic Square in Python. We will learn about Magic Square, its steps and algorithm, and its code implementation through Python programming lan.... Read More

Explain R Squared used In Machine Learning in Python

By Yash Gandhi

In simple words, R Square is a statistical formula. Here we get more details. What is R square? R2  is just a square of R. R is a correlation that is numbered between +1 and -1. I.... Read More

Basics of Turtle programming in Python

By Shraddha Jadhav

In this tutorial, we will learn about the Basics of Turtle programming in Python. turtle is a pre-installed Python library that helps programmers to create objects on a virtual can.... Read More

How to add leading zeros to a number in Java

By Prathamesh Ballal

In this tutorial, we are going to learn how to add leading zeros to a number in Java. We can add leading zeros in a number by format the output using a format string. Add leading z.... Read More

Related Posts