Checked Vs Unchecked exceptions
In this blog post, I will be explaining the difference between checked and unchecked exceptions. Checked exceptions Checked exceptions are […]
In this blog post, I will be explaining the difference between checked and unchecked exceptions. Checked exceptions Checked exceptions are […]
A very common interview question is to ask the difference between String, StringBuffer and StringBuilder. So in this blog post, […]
In this blog post, I will be explaining what Java interfaces are and how they can be used. What is […]
You might have heard a lot about Java Strings being immutable. You might have also faced interview questions where you […]
In this blog post, I will be explaining the difference between the Hibernate load and get methods. Both methods are […]
A constructor is a special method that is invoked as soon as an object is created using the new operator. […]
In this blog post, I will be explaining how the Java 8 functional interface LongPredicate works. To know more about […]
Java provides an interface called Iterator that is used to iterate over or loop through the elements in a collection. […]
In this blog post, I will be explaining how you can shuffle list via Java. Consider the following code snippet: […]