How to extract audio from video in Python

By Venkat Kumar

In this article, we will discuss how to extract audio from a video in Python. You may need this as a feature of your project or for automating tasks using Python scripts. moviepy l.... Read More

How to Delete an Element from Array in C++

By Aayush Kumaria

In this tutorial, we will learn how to delete an element from an array in C++. We can use the index value to delete any element from an array. So we all know how to add an element .... Read More

How to Dereference a Pointer in C++

By Aayush Kumaria

Hey Guys, Today We will be discussing how to dereference a pointer in C++. This is really helpful since it helps us understand the use and purpose of a pointer. So let us get right.... Read More

Tutorial: File Handling in C++

By Aayush Kumaria

In this tutorial, our topic is: File handling in C++. Here we will learn the following things one by one. What are Headers in C++ How to open and close a file How to write into a f.... Read More

Multiclass Classification using Scikit-Learn

By Kunal Gupta

Hello everyone, In this tutorial, we’ll be learning about Multiclass Classification using Scikit-Learn machine learning library in Python. Scikit-Learn or sklearn library pro.... Read More

How to merge cells in an HTML Table

By Sagar Patil

Hello everyone! In this tutorial, we will learn how to merge cells in an HTML table. Before we go forward, let’s define our HTML table first: <table border="2"> <tr&.... Read More

How to call a function every n seconds in C++

By Ranjeet V

In this tutorial, we are going to learn how to call a function every n seconds in C++. We are going to do this using two methods. One is using Sleep() function and other is using t.... Read More

Convert RGB to binary image in Java

By Esmail Rahmani

In this tutorial, we will learn how to convert RGB to a binary image (black and withe image) in Java programming language. A binary image consists of only black and white in color..... Read More