This abstract class is correct ? abstract class A { public abstract void Disp(); public abstract void B() { } public absract virtual C() { } }
No Answer is Posted For this Question
Be the First to Post Answer
How to Create A Wapper Class in core Java and Why are Use in java?
What’s the difference between the methods sleep() and wait()?
why java is not supporting multiple inheritence?
Is ++ operator is thread safe in java?
How will you convert an ArrayList to Arrays?
Define how does a try statement determine which catch clause should be used to handle an exception?
What is java english?
What is bufferedreader in java?
What is the difference between public, private, protected, and friend access?
Explain the difference between call by refrence and call by value?
ublic class Java_Coding_Samples { public static void JavaHungr(NumberFormatException ae){ System.out.println("integer"); } public static void JavaHungry(Exception e){ System.out.println("string"); } public static void JavaHungry(ArithmeticException ae){ System.out.println("object"); } public static void main(String[] args) { JavaHungry(null); }
Why java is call by value?