How to remove leading zeros from a string in Java

By Aakash Puri

In this tutorial, you’ll learn how to remove leading zeros from a given string in Java. There are many ways in which you could do that. For example, use string functions or c.... Read More

How to send Email with attachment in Java Eclipse

By Smitha S Maganti

Hello, in this tutorial, you will learn how to send an email with an attachment using Java Eclipse. The easiest way to do this is by converting the Java project to a Maven project .... Read More

Replicate the google.com page design using HTML and CSS

By Aayush Dubey

In this tutorial, we will design Google’s homepage using HTML/CSS. This is just a tutorial for learning purposes, this is not meant to use the design in any other use. Larry .... Read More

Python Program to find Maximum number possible by doing at-most K swaps

By Aayush Dubey

In this tutorial, we will see how to find the maximum number possible by doing at most K swaps in the number in Python. Consider the following examples: INPUT: Number=189 K=1 OUTPU.... Read More

How to calculate Average of a stream of numbers by program in Python

By Aayush Dubey

In this tutorial, we will see how can we calculate the Average of a stream of numbers in Python. Average is also known as the mean. Average or mean are terms related to mathematics.... Read More

How to throw an exception in Java

By Tishya Thakkar

In this tutorial, we will learn how to throw an exception in Java. We use exceptions in Java to check for errors at compile-time instead of runtime. We can also create custom excep.... Read More

Filter Nested Object In JavaScript

By CHAWADIMANI SANJANA VIJAY

In this article, we are going to learn how to filter nested object in JavaScript. For this, we will use filter() function to filter the nested objects easily. Okay!! now let me tel.... Read More

How to create your own header file in C++

By Sanam Sahoo

Hello, Coders! In this C++ tutorial, we will discuss and learn about the header files in C++ and how to create our own header files easily. Header Files in C++ C++ language has a l.... Read More