Learn three different ways to calculate the average of list numbers in Python. Each python program will take the numbers as input from the user and print out the average of all numbers.
ReadJava program to find the count of each character in a string. This program will take one string as input from the user, and print out the count of each character.
Readfinal variables are variables that cannot be changed i.e. constant. It is really good practice to use final variables using uppercase letters and underscores as separator. Something as like below.
ReadLearn how to check if a matrix is sparse matrix or dense matrix in Java. This program will take the matrix values as inputs from the user and print out if it is sparse or dense.
ReadLearn how to convert a decimal value to binary in Java in 3 different ways. We will do it by using an array of integers, using StringBuilder class and using toBinaryString.
ReadHow to use Java 8 in Android Studio. Android Studio 3.0 preview 1 and later added support for Java 8 features. This post will show you how to configure Android Studio for Java-8.
ReadIntroduction to lambda expressions in Java. Learn how to use lambda expressions and what are its advantages in Java with examples.
ReadIntroduction to Java Math module. Math class is available in java.lang package and it has two constants and more than 40 static methods to do some advanced mathematical operations easily.
Readpip is a package management system , we can use it to install and manage software packages in python. pip is included by default for python 2.7.9 and later . For python3, it is called pip3 which is also included by default for Python 3.4 and later .
ReadIn this python programming tutorial, we will learn how to find the area of a circle programmatically. Our program will take the radius as input from the user and calculate the circle area.
Read