Curated Collection of Java Interview Questions
Java Interview Questions based on topics :- The below links contain list of questions asked in Java Interviews. Short, Crisp …
Java Interview Questions based on topics :- The below links contain list of questions asked in Java Interviews. Short, Crisp …
Functional Programming with Lambda Expressions and Streams 1. What is functional programming? Functional programming is a programming paradigm—a style of …
Advanced Collections 1. What is the difference between synchronized and concurrent collections in Java? Synchronized collections are implemented using synchronized …
Collections 1. Why do we need Collections in Java? Arrays are not dynamic. Once an array of a particular size …
Miscellaneous Topics 1. What is Garbage Collection? Garbage Collection is a name given to automatic memory management in Java. Aim …
Wrapper Classes 1. What are wrapper classes? A primitive wrapper class in the Java programming language is one of eight …
Exception Handling 1. Why is Exception Handling important? Most applications are large and complex. I’ve not seen an application without …
Access Modifiers 1. What is default class modifier? • A class is called a Default Class is when there is …
Advanced Object Oriented Concepts 1. What is Polymorphism? Polymorphism is defined as “Same Code” giving “Different Behavior”. Let’s look at …