ratio_equal() and ratio_not_equal() in C++

By Aakash Puri

In this tutorial, you will learn about the two ratio manipulation functions in C++ i.e. ratio_equal() and ratio_not_equal(). Apart from these two ratio manipulation functions, ther.... Read More

CSS Pagination with examples

By Mayank Bhandari

In this tutorial, we will learn about “CSS Pagination”.  Heard about it for the first time, but don’t worry you must have seen it almost all the time. Whenever y.... Read More

Python: Line Detection using hough transform

By Mayank Bhandari

In this tutorial, we will learn how to detect line using Hough Transform in Python. But let’s first try to understand what is Hough Transform.  Hough Transform is a method w.... Read More

Job Sequencing Problem using Greedy method in Python

By Saumitra Deshpande

In this blog, we are going to see how we can solve the Job Sequencing Problem using the greedy method in Python. We are going to do this in Python language. An array of jobs is giv.... Read More

Usage of variables starting with underscore in Python

By Suchita Sriramka

This article explains the different patterns and uses of underscores in Python. We all know basic variable naming rules in Python – start with an alphabet or underscore, cannot s.... Read More

A program in Python to demonstrate Finite Automata

By Aayush Dubey

Hello Everyone! In this tutorial, we will see how can we make a program in Python to work as finite automata. Here a quick review of Finite Automata(FA).   Finite Automata A F.... Read More

Print Nth word in a given string in Python

By Aayush Dubey

In this tutorial, we will see how can we find Nth word in a given string in Python. Often we come across situations where we don’t want the entire string but only a particula.... Read More

Build BMI Calculator in JavaScript

By Pranav Bharadwaj

Hello! In this tutorial, we will be building a body mass index (BMI) calculator in JavaScript. This module can be included in any of the HTML files with a single line of code. This.... Read More