Print the corner elements of the matrix using C++

By Anne Caroline Glory Prince

In this tutorial, we will learn how to print the Corner elements of the matrix using C++. The program prints the top left element, top right element, bottom left element and bottom.... Read More

Calculating Area of a Trapezoid using Java

By Tanisha Saxena

In this tutorial, we will learn how to calculate the area of a trapezoid in Java programming language. A trapezoid is a 4-sided flat shape having straight sides that has a pair of .... Read More

Replacing a digit in a number with another digit in C++

By Astha Awasthi

In this CPP tutorial, we are going to discuss how to replace a digit in a number with any other digit. Integer to String Conversion To convert an integer to a string we use t0_stri.... Read More

Sort Words in a List in Alphabetical Order in Python

By Svarnim Agarwal

In this tutorial, we will learn how to sort words in a list in alphabetical order in python. This is a very simple code and requires the use of only one string function. Python con.... Read More

Python Program to Remove Punctuations From a String

By Svarnim Agarwal

In this tutorial, we will see how to remove punctuations from a string in python. A string is essentially just a list of characters, so we will go through each character and assign.... Read More

How to make a simple calculator using JavaScript?

By Utkarsh Tiwari

Hey Folks, I am up with another tutorial of JavaScript. In this tutorial, we will learn how to make a calculator using JavaScript. In this world everyone needs a calculator, isn.... Read More

Binary Search to find element in array using Java

By Utkarsh Tiwari

This tutorial will focus on, How to find an element in an array using Binary Search in Java Hey folks, I am back with another tutorial for you. In this tutorial, we will learn how .... Read More

Binary Classification using Neural Networks

By Mrityunjay Tripathi

This article will help you to understand binary classification using neural networks. ( Only using Python with no in-built library from the scratch ) Neural Network Definition : A .... Read More

Related Posts