Digits – reverse pattern using C++

By Anne Caroline Glory Prince

In this tutorial, we will learn how to reverse the digits of the integer in reverse pattern using C++ program. The integer is obtained as input. It is put into an array and each di.... Read More

Octal to Decimal conversion in JAVA

By snormy

This tutorial would help in learning the following: Conversion of numbers from octal-system (0 to 7) to decimal-system (using 0 to 9) Re-conversion of characters into their respec.... Read More

Find determinant of a matrix in C++

By Pritam Hande

In this tutorial, we will learn how to find the determinant of a matrix in C++. Determinant of a Matrix Determinant of a Matrix: is a special number that can be calculated from ele.... Read More

Python range() function

By Thiru Maran

In this tutorial, we are going to see the use of range() function in Python language. The range() is a built-in function available in Python that is used for finding the range betw.... Read More

Special sub-package of Scipy module in Python

By Apoorva Gupta

In this tutorial, you are going to learn about the special sub-package of Scipy module in Python. Scipy module is an inbuilt module of python and used in mathematics and scientific.... Read More

Python program to check a binary number is divisible by a number N.

By Bipin Kumar

In this tutorial, we will see how to check a binary number is divisible by a number N in Python programming. The value of the variable N and binary number is provided by the user.... Read More

Check if the variable is empty or not in Python

By CHITRANSH PANT

In this tutorial, we will learn an easy yet important topic of how to check if the variable is empty or not in Python The various sequences are: Lists Tuples String Dictionary Nump.... Read More

Search an element in a sorted and rotated array using Java

By Anubhav Srivastava

Hi coders!  I am here with a solution to a new problem related to a sorted array. Many of you may have seen a lot of array related problems but this one is a new kind. Here we wil.... Read More

Related Posts