Does apple use java?
No Answer is Posted For this Question
Be the First to Post Answer
What is generics in java interview questions?
can we create object for static class in java
14 Answers IAP Company, IBM, Marlabs, mPortal, TCS,
What is quick sort in java?
Is void a return type?
Why we do exception handling in java and how many types of exceptions are there?
what are the diffrences between interface and abstract class?
State the significance of public, private, protected class?
What is the type of lambda expression?
What is the difference between class forname and new?
What is a Java switch statement, and how can it be used?
How do you define a parameter?
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(); }