User Defined Exceptions in java

Apart from java we have Existing Exceptions. and we can also create our own Exceptions nothing but User defined Exceptions. User defined exceptions in java are also known... read more ?

try catch finally in java

try block: The functionality of try keyword is to identify an exception object. And catch that exception object and transfer the control along with the identified exception object... read more ?

Different Ways to Create Thread in Java

In  java we can create user defined threads in two ways  Implementing Runnable interface extending Thread class. (adsbygoogle = window.adsbygoogle || []).push({}); These are the two different ways... read more ?

Top 20 Basic Java Interview Programs on Increment Decrement operators

In most of the interviews questions on increment and decrement operators will come in face to face or in written test. Every Java Interview written test will have... read more ?

Top 13 Java Interview Questions on Static keyword

1.what is static in java? Static is a keyword in java. One of the Important keyword in java. Clear understanding of static keyword is required to build projects.... read more ?

Top 20 collection framework interview questions and answers in java

collections%20interview%20questions

Java collections interview questions: 1.Why Map interface doesn’t extend Collection interface? Set is unordered collection and does not allows duplicate elements. List is ordered collection allows duplicate elements.... read more ?

Final static string vs Static string in java

Static final variable java example: If we declare any variable as static means it is class level variable. If we declare any variable as static final its class... read more ?

Select Menu