What is a substring in Java?

By Smitha S Maganti

In this tutorial, you will learn what a substring is in Java. A substring is a part or subset of another string. For example, ‘Code’ is a substring of the string ‘.... Read More

Python | Binary Operations in NumPy

By Ashutosh Khandelwal

In this tutorial, we will learn how to perform basic Binary Operations in Python using the NumPy library. You can learn about NumPy here- Python programs using NumPy There are var.... Read More

Stack of pair in C++ STL

By Ashutosh Khandelwal

Hello folks! This article is aimed at understanding the Stack of Pair in C++. So, before moving to topics let’s have a recap of Stacks and Pairs in C++. Stack The stack is a .... Read More

Show specific number of digits after decimal point in C++

By Arpitha

In this tutorial, let’s learn about how to display a specific number of digits after the decimal point in C++. iomanip It is the header file in c++ which contains functions t.... Read More

How to convert string to integer in C++

By Arpitha

In this tutorial, let’s study various ways to convert string to integer in C++. stringstream() in C++ It is the simplest way of converting strings to integers in C++. string .... Read More

GUI Application to Calculate Area of a Square in NetBeans IDE using Java

By Vaishnavi Penumerthy

In this tutorial, you will learn to create a simple GUI application that calculates the area of a square in NetBeans IDE. Before continuing make sure you go through the article bel.... Read More

Download a file from a URL and store in a specific directory using Java

By Smitha S Maganti

In this tutorial, you learn how to download a file from a URL using the Java IO package. You use the BufferedInputStream class to read the contents of a file, and the BufferedOutpu.... Read More

Difference between fabs and abs function in C++

By Arpitha

In this tutorial, let’s study the difference between fabs and abs function in C++. Fabs() and abs() functions are almost identical and are included in <cmath> header fi.... Read More