BeignTech - Tech That Matters BeignTech
Java

Array: Array Contruction

Every array in java is an object, here we can create by using new operators                    int [] a = new int[3]; for e…

Array in Java

An array is an indexed collection of fixed number of homogeneous data element. The main advantege of array is we can represe…

Literals in Java: All about the literals

What is Literals in Java? A Constant value which can be assign to the variable is called "Literal"               …

Data Types in Java

In a java there are are mainly two types of data types. Primitive data types: This data types include a Numeric datatypes …

Indetifier In Java

A name in Java program is called identifier,it can be class name or variable name or method name or lable name. Example.   …

Load More
That is All