How to find index of largest element in an array C++

By HARI HARAN B

Finding the index of the largest element in an unsorted array is done through brute force search. If the array is sorted the task is trivial and the index is the length-1 if it’s.... Read More

What does an exclamation mark mean in the Swift language?

By Saruque Ahamed Mollick

In this tutorial, we will see what an exclamation mark means in Swift. And we will also see the purpose of using exclamation mark with an example. In the Swift programming language.... Read More

Shift binary numbers in C++

By YANNAM SATYA AMRUTHA

In this article let’s discuss how we can shift the binary numbers with the help of some example codes in C++. Shift operations are bit-wise operations because we perform thes.... Read More

How to get MAC address of a device in Python

By Kovid Bhatt

In this tutorial, we will write a Python program using a special module called UUID to fetch your system’s MAC address. This module is particularly used to fetch the MAC addr.... Read More

Convert Integer to Datetime in Pandas DataFrame

By Prachi Pandey

This post will help you learn how to convert integer to DateTime in Pandas dataframe in Python. Our purpose is to perform this particular task using the Pandas.Datetime() method. T.... Read More

Insert a column to Excel using openpyxl in Python

By Aakanksha Thakar

This tutorial will see how to insert a column into the Excel sheet using the Openpyxl library in Python. Using this library we can do multiple operations on an excel file. First, i.... Read More

How to sharpen an image in Python using OpenCV

By Kovid Bhatt

In this tutorial, we will see the concept of image sharpening and contrasting in Python using OpenCV. Here, we will be able to enhance and strengthen the edges of the image. We wil.... Read More

How to get form data with post method in Express.js

By HETVI JAIN

In this tutorial, we will learn how to get the form data with the post method. Forms are a secure way of collecting users’ data, as they allow us to send data using a POST re.... Read More