In how many ways we can do synchronization in java?
No Answer is Posted For this Question
Be the First to Post Answer
What we have to do, when we don't want to implement all methods of an interface?
Explain 5 features introduced in jdk 1.7?
What is jit compiler ?
v-model life cycle
how many design pattern r there? and wht design pattern u use and why ?
For technical interview question please sir send me because tomorrow my interview
Why is whitespace important?
What is immutable class? how to make a Class explicitly "Immutable"?Wap to make a class explicitly immutable.
class A{ m2(){ } } class B extends A{ m2(){ } } class c extends B{ m2(){ } } class my_class extends c{ m2(){ } pulic static void main(){ ...My_class a = new my_class(); super.super.super.m2(); is this is leagal if not find what is the legal procedure in order to call A's version of m2(); }
Explain the difference between hashmap and hashtable in java?
When a thread is executing synchronized methods , then is it possible to execute other synchronized methods simultaneously by other threads?
How we can skip finally block of exception even if some exception occurs in the exception block in java?