Can I declare class as static or private?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by a JVM?
What is the biggest integer?
How are variables stored?
Write a function for palindrome and factorial and explain?
0 Answers Honeywell, Huawei, Zomato,
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
Why do we need public static void main(String args[]) method in Java...?
What is the Vector class?
What are the benefits of immutable objects?
What is mysql driver class name?
Which class contains a method: cloneable or object?
if the memory capacity is 700 presently occupied by process is 690. then another process request space(40) how this situation handled in java.
what is mutual exclusion? How can you take care of mutual exclusion using java threads? : Java thread