________ exception must be either caught or specified in
throws class of the method.
what is request dispatcher and how does it work?
Is it safe for adding 10,00,000 records/objects to HashMap?, i.e is it safe to add millions of objects to HashMap?
What is the difference between class forname and new?
What is thread safe in java?
Are functions objects in java?
What’s the difference between unit, integration and functional testing?
Can you have an inner class inside a method and what variables can you access?
Features of Java?
What will happen if a thrown exception is not handled?
0 Answers ABB, Akamai Technologies, Infogain,
Can we sort array in java?
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(); }
What is the use of beaninfo?