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.

User Defined Exception in Java

In this tutorial, we will understand what is a user defined exception or custom exception in Java with the help of examples. As we have read about several predefined or built-in exceptions provided by the Java platform in the earlier…

Multiple Catch Block in Java

Multiple catch block in Java

In Java, a single try block can have multiple catch blocks. When statements in a single try block generate multiple exceptions, we require multiple catch blocks to handle different types of exceptions. This mechanism is called multi-catch block in Java.…