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.

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.…

Java Try Catch Block (with Examples)

Exception Handling Mechanism using Java Try Catch block

In this tutorial, we will understand try-catch block in Java with the help of example programs. In the previous tutorial, we have known that when an error occurs within a method of program, the method creates an exception object and hand…