In which language java is written?
No Answer is Posted For this Question
Be the First to Post Answer
Explain different states of a thread in java?
How can I become a good programmer?
Hi Friends, I am beginner in java. what i know about synchonized keyword is,If more that one 1 thread tries to access a particular resource we can lock the method using synchronized keyword. Then after that how the lock is released and how next thread access that.Please explain with example.
Can constructor return value?
why an outer class cannot be declared as private?
What is exception in java?
Can a class be final?
Can you access non static variable in static context?
if the memory capacity is 700 presently occupied by process is 690. then another process request space(40) how this situation handled in java.
Explain about fail fast iterators in java?
Why java is a platform independent? Explain
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(); }