How many bytes is a string?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between method overriding and overloading?
What is continuity of a function?
Do we have pointers in java?
If a variable is declared as private, where may the variable be accessed?
What is anti pattern in cyber security?
What do you mean by multithreaded program?
Is minecraft 1.15 out?
What is the old name of java?
Which is illegal identifier in java?
Hi friends am new to java. I read jar file means collection of java files. For executing struts application what are the necessary jar files. " struts.jar " file contains what. can u explain
What is the difference between array and arraylist? what is the difference between arraylist and linkedlist?
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(); }