Saturday, June 27, 2015
Uncaught Exception in Java: Yet Program Exits with Success?
›
I n Java, you would have noticed that if we get an uncaught exception JVM exits with success (exit code is zero). While in C++ if there ...
8 comments:
Friday, June 26, 2015
Can you suggest improvements in Java?
›
This is one of those abstract questions that often comes across in Java interview questions. More of than not, candidates are not able t...
1 comment:
Thursday, June 25, 2015
Arraylist v/s Vector
›
ArrayList v/s Vector Expect this question in a junior level (0-2 yrs) interview. One of the most done to death and still kicking quest...
Wednesday, June 24, 2015
HashMap v/s ConcurrentHashMap
›
Concurrence Going a step further interviewer now delves into the multi-threading regime. One of the first questions that is asked at m...
Tuesday, June 23, 2015
Better way to check if String is empty: length() vs equals()
›
Empty? It's quite a common and necessary thing to check if the string is empty or not. Different people use different things. Int...
Monday, June 22, 2015
Iterator v/s Enumator
›
Iterator v/s Enumerator Often asked during interviews from Collections. They are both used to iterate over a Collection of Data. Below...
Sunday, June 21, 2015
Java HashMap v/s HashTable
›
Map v/s Table HashMap always brings innumerable interview questions along with itself. One of the common interview questions is the ...
Saturday, June 20, 2015
Story behind naming of JAVA
›
THE JAVA EFFECT! Have you ever wondered what does JAVA stands for? What is the full form? Who named it? Well, time to quell the anxi...
Friday, June 19, 2015
AWS Lambda: Introduction
›
AWS Lambda (Amazon Web Services Lambda) is a service that manages compute resources and runs the code within milliseconds of trigger. Sa...
5 comments:
Concurrency Utilities Fork/Join Framework
›
Forks Join! With the advent of multiple processors, the code also need to evolve. We need to write code which can spawn Threads in s...
›
Home
View web version