#interview-questions
Read more stories on Hashnode
Articles with this tag
Motivation just wanted to document my journey my failures and my wins over these years , it will be great once I will re-read these blogs post or...
public class Test { enum Animals { LION,DOG,COW; } public static void main(String args[]) { Animals[] animalsArray= ...
import java.util.HashMap; import java.util.Map; public class Test { public static void main(String args[]) { Person p1 = new...
JavaMadeSoEasy.com (JMSE): Top 50 Garbage collection interview Questions and answers for experienced and freshers JavaMadeSoEasy.com (JMSE): Top 50...
What is constructor overloading ? Constructor in a class with same name but different arguments And when we are creating object a particular...
What is JIT compiler ? So java source code (.java) file is converted to a byte code (.class) file with the help of javac compiler Then jvm will...