Features of java Part . 11

Object oriented :- A Java is object oriented programming language because java follow more oop’s concept as comparison to other programming language. In java programming every thing in an object means without class you can not write single java program.

Scanner class in Java Part . 10

In order to read data from the keyboard, java has a Scanner class.
Scanner class has a lot of methods to read the data from the keyboard.
We have different ways to take input from user in Java.

DATA TYPES IN JAVA PART . 9

In order to choose the data type we first we need to find to find the type of data , we want to store. After that, we need to analyze the min and max value we might use.

Compilation and Execution Structure of Java Part . 5

In java java.lang package is default package.
Which is the most important package in java.

BASIC REQUIREMENT TO WORK IN JAVA IDE PART . 4

jdk is the combination of java compiler(javac.exe),jre(jvm, library)
Download the jdk from oracle web site.

DIFFERENCE BETWEEN FUNCTION AND METHOD IN JAVA PART . 3

If a function is defined with in a class then it becomes as method. And without class it is called as function.