Virtual function vs Pure virtual function in C++

By Sanam Sahoo

Hello, Coders! In this section, we will study the concept of the virtual function and pure virtual function and the difference between them in C++. Virtual Function A virtual funct.... Read More

Catching Crooks on the Hook in Python Using Machine Learning

By Abhishek Prasad

In today’s world crime is increasing day by day and the numbers of law enforcers are very less so to reduce crime we can use machine learning models to predict whether the pe.... Read More

Implementing Positive and Negative Infinity in Java

By Sai Venkat Kodithyala

In this tutorial, we are learning how to implement infinity in Java. We will implement both positive and negative infinity here. Positive Infinity in Java Let’s see how we ca.... Read More

How to sort a Dictionary by value in Python

By Varsha Neelamma

In this tutorial, we will learn how to sort a Dictionary by value in Python. The values in a Python dictionary can be of any data type and can be repeated too. However, the keys in.... Read More

How to add space after dot or comma in Python string

By Anamika Roy

We are going to learn about adding space after dot or comma in a string, using Python programming language in this tutorial.  It is used in many cases like while making software, .... Read More

Add an element to an array in C++ only if the element doesn’t already exists

By Vishnu Chand

Hey learners, In this tutorial, let us learn a new concept that is how to add an element to an array if the element doesn’t exist in the array already in C++. let us understa.... Read More

Round a number to 2 decimal places in JavaScript

By CHAWADIMANI SANJANA VIJAY

In this article, you’ll learn how to Round a number to 2 decimal places in JavaScript. For this we will use two in-built methods in JavaScript namely toPrecision() and toFixed() .... Read More

Take user input and save those in .txt file using Python

By Yashkumar Patel

In this tutorial, we will learn how can we take input from users and save these inputs into a .txt file. These types of things are useful for developers as they need to store the d.... Read More

Related Posts