Why local variables are stored in stack?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between path and classpath variables?
What are the benefits of java?
can we write program without class
Explain the inheritance?
Why ArrayList class is not a synchronized class and why it is not a thread safe class? explain
what is difference between abstract and interface? can i give real time example for the two topics?
How do you read and print a string in java?
What happens when a class is made static like if a field or member is made static it becomes class variable and is shared by all the object of the class?
How can two threads be made to communicate with each other?
Why use string handling in Java?
What is meant by attribute?
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(); }