Category java

Reintroduction to Java Data Types

Reintroduction To Java Data Types
Primarily “Data types” in java can be categorized into two types. That are, Primitive and Non Primitive or Reference data types. Primitive data types can be classified into four groups boolean, character, floating point and Integers. Everything else other than…

How to read input from console in Java

How to read Console Input in java
There are 3 different ways to read input from console in java. We can read input from console by using any one of the following Class. Scanner Class BufferedReader Class Console Class Read Console Input using Scanner Class Possibly this…