What happens if we override private method?
No Answer is Posted For this Question
Be the First to Post Answer
Difference between keyword and identifier.
java program that takes a 3 digit number n and finds out whether the number 2^n + 1 is prime, or if it is not prime find out its factors.
What are the different conditional statements?
What is singleton pattern?
Tell me about different OOPS concepts.
What is remote method invocation (rmi)?
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 difference between length and length () in java?
how can i take the inputs from users in java program?
Justify your answer that you can't define a method inside another method in java, if you can then how?
How can we make sure main() is the last thread to finish in java program?
What is user defined exception?