Category Java

Scientech Easy welcomes you in the Java tutorial category. We have designed this tutorial series for beginners, students, and professional developers who want to learn Java programming from basic to advanced levels. Here, you will find easy-to-understand Java tutorials, practical example programs, interview questions, and quizzes.

So, let’s start to understand Java concepts one by one with these tutorials.

Passing Arrays to Methods in Java

Passing arrays to methods in Java

Passing arrays to methods in Java | Just like we can pass primitive type values and objects to methods, it is also possible to pass arrays and individual array elements as arguments to methods and returns arrays from methods. When…

Multidimensional Array in Java (2D Array)

Multidimensional array in Java

Multidimensional array in Java represents 2D, 3D, . . . . arrays which is a combination of several types of arrays. For example, a two-dimensional array is a combination of two or more one-dimensional (1D) arrays. Similarly, a three-dimensional array…

One Dimensional Array in Java

One dimensional array or single dimensional array in java

An array with one dimension is called one-dimensional array or single dimensional array in Java. It is a list of variables (called elements or components) containing values that all have the same type. One dimensional array represents one row or…

Array Initialization in Java

Array initialization in Java

Once the array is created, the next step is to put the elements (or values) into the array created at compile time. This process is called initialization of array in Java. The general syntax to initialize elements of array when…