Python program to check whether a given matrix is an idempotent or not

By Abinash Reddy

In this article, we will check whether a given matrix is an idempotent matrix or not in Python. Example Input: matrix[][] = {{3, -6},                    {1, -2}} Output: .... Read More

Calculate the average of a number’s digits in Python

By Souhardya Ganguly

In this Python tutorial, we shall be seeing how to calculate the average of the digits of a number. What exactly does this mean? Consider the number 537. The average of its digits .... Read More

Chinese Remainder Theorem with solution in C++

By Srirama Charan

Today we will see a rather interesting problem called the Chinese remainder problem and try to understand the theory behind it. The Chinese Remainder theorem was first introduced b.... Read More

Secure Passwords Using Python

By Aayushi Agrawal

Hello, friends! In this tutorial, we are going to create a Python application to secure any password that you want for more security. So let’s get started! Create Secure Pass.... Read More

Java program to solve Celebrity Problem using stack

By Rahul Kumar

Hello Everyone! In this Java tutorial, we are going to discuss the problem of a celebrity program using a stack. We are going to use the stack method to solve this problem in Java..... Read More

Get network status in Android studio using Java

By Jai Chaudhry

In this tutorial, we will fetch Network status via 2 methods in android studio using Java. You can use any latest version of Android Studio. This tutorial was written using Android.... Read More

Creating Persistent Notification in Android Java

By Jai Chaudhry

In this tutorial, we will write code to show unkillable/persistent notification in android application using Java. You can use any latest version of Android Studio. This tutorial w.... Read More

How to easily create tables in Python using tabulate function

By Aayushi Agrawal

Hello friends! In this tutorial, we are going to learn how to create well-formatted tables in Python using tabulate function and how to use different arguments and parameters to ch.... Read More