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.

Difference between Super and This Keyword in Java

In this tutorial, we will understand the basic difference between super and this keyword in Java. So, let’s start with the basic introduction of both. Introduction to ‘super’ Keyword: The ‘super’ keyword in Java is a reference variable that refers…

Behavior of Access Modifiers in Java Inheritance

Superclass members can be inherited to subclass provided they are eligible by access modifiers. The behavior of access modifiers in the case of inheritance in Java is as follows: The private members of the superclass cannot be inherited to the…

Control Statements in Java

Types of Conditional control flow statements in JavaScript

In this tutorial, we will understand about the different types of control flow statements in Java and the best practices for using them. A simple Java program contains a set of statements that generally contain expressions and end with a…

Nested Interface in Java with Example

Nested interface in Java

When an interface as a static member is declared inside a class or another interface, it is called nested interface in Java or member interface. Nested interface must be declared as public inside another interface. The nested interface can be…