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 Create Object in Java

Steps to create object in java

In this tutorial, we will learn how to create an object in Java with the help of examples. We know that everything is an object in Java. A class is a model or user-defined blueprint for creating objects. It encapsulates…

Data Types in Java with Examples

Types of data types in Java

In Java, we need a variable to store data during the execution of program. Internally, a variable represents a memory location where data is stored. When we use a variable in Java program, we have to declare first it along…

Arguments in Java | Parameters, Example

Arguments in Java

Arguments in Java are the actual values that are passed to variables defined in the method header when the method is called from another method. That is, whenever any particular method is called during the execution of the program, there…

How to Call Method with Parameters in Java

How to call method with passing parameter in Java

In this tutorial, we will learn how to call a method with parameters in Java. When we call a method, the actual arguments in the method call are passed to the formal parameters defined in the method definition. This process…

Return Type in Java

Return types in Java

We know that a method is a function declared inside a class that contains a group of statements. It is used to perform certain tasks or processing of data in the program to yield the expected results. A method can…