Showing posts with label PPL. Show all posts
Showing posts with label PPL. Show all posts

Thursday, 11 April 2024

What is Exception Handling in Java?

What is Exception Handling in Java?

Fundamental, exception types, uncaught exceptions, try, catch, throw, throws, finally, multiple catch clauses, nested try statements, built-in exceptions, custom exceptions (creating your own exception ...

Read More

What is Interface in Java?

What is Interface in Java?

Interfaces (defining, implementation, nesting, applying), variables in interfaces, extending interfaces, instance of operator.Nested Interface:    by declaring one interface within another ...

Read More

Tuesday, 9 April 2024

What is Package in Java ?

What is Package in Java ?

Packages: defining a package, finding packages and CLASSPATH, access protection, importing packagesWhat is Package in java? Why do we require Package in jav ...

Read More

Sunday, 7 April 2024

What is Inheritance in Java?

What is Inheritance in Java?

Inheritances: member access and inheritance, super class references, Using super, multilevel hierarchy, constructor call sequence, method overriding, dynamic method dispatch, abstract classes, Object ...

Read More