std::exchange in C++

By Lakshya Narain

In this tutorial, you would understand what is std::exchange and how is it used in C++. The purpose of std::exchange is that it returns the old value of the particular variable and.... Read More

QR Code Scanner in Python

By Prakhar Gupta

This article is to introduce the Python library known as qrtools, which can be used to scan and generate QR code in Python. What is QR Code? A QR code is a readable barcode. The IS.... Read More

Learning Prediction Models with False Positives and False Negatives

By Manisha

In this article, you will study false positives and false negatives in Machine Learning. Learning Prediction Models These two concepts, i.e., false positives and false negatives, f.... Read More

C++ program to find the depth of a N-ary Tree

By Saksham Agarwal

In this blog, today we’ll try to find the maximum depth of an array given an N-ary Tree in C++. WHAT IS AN N-ARY TREE? An N-ary Tree is a tree in which every vertex has no mo.... Read More

How to add YouTube Vidoes using HTML

By Saksham Agarwal

Hey everyone, in this blog we’ll see how we can add Youtube videos to our HTML page. So for this, you must know about 2 things: Youtube video ID iframe tag (recommended) NOTE.... Read More

Count Occurrences of a specific word in a string in C++

By Lakshya Narain

In this tutorial, we will learn how to count occurrences of a specific word in a given sentence in C++. We are given a sentence containing the word we are to find, and we are suppo.... Read More

ImageEnhance Module in Pillow

By Shailesh Bhimanpelli

Hello Programers! In this tutorial, we are going to take a look at the ImageEnchance module in the pillow library. This module contains a number of classes that are used for Image.... Read More

Parsing a JSON Array in Swift

By Aryan

JavaScript Object Notation, or JSON, is a text-based data format that is used to store and transfer data across web and local networks. JSON is the most popular data format used in.... Read More

Related Posts