Introduction
Java is general-purpose, high level, pure object oriented programming language.Java is developed by James Gosling.
Learn NowJava Data Types
Data Types which is used in the program. There are many predefined data types in java library like integer. floating.
Learn NowJava Variables
Variable is a name of storage space Variable value may be changed. Variables are containers that store data values.
Learn NowJava User Input
A user input can be used dynamically enter data by user.Scanner class is defined inside java.util package.
Learn NowJava Comments
Comments can be used to explain the source code to make it more readable Java program.Java compiler.
Learn NowJava Constant
Java constant is a element of program value can not be changed at the time of execution of program.
Learn NowJava Keywords
A Java word is a pre-defined in the library is called keyword. It's functionality is also pre-defined.
Learn NowJava Operators
Operators can be used to perform arithmetic calculations, compare values, assign data, logical conditions.
Learn NowIf-Else Statement
A java conditional statement can be using decision making control system. It can be used condition.
Learn NowJava All Loops
Loop is part of control flow statements. To run the particular block of code continuously until a required condition is fulfil.
Learn NowJump Statement
A jump statement in java is a control flow statement that allows break, continue and return the program to jump.
Learn NowJava One-D Array
A one-dimensional array in java is a collection of data of same data types. It can store data of same data types means.
Learn NowJava Two-D Array
A java multi-dimensional array is a data structure that can hold multiple values.We do not create separate variables.
Learn Now