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.

How to Return Array in Java

In this tutorial, you will learn how to return an array from a method in Java. You have studied in the previous tutorial that we not only can pass an array when calling a method, we can also return an…

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…