R
Q. What is the result of the following code snippet? abstract class MyAbstract { abstract void myMethod(); } class MyClass extends MyAbstract { void myMethod() { System.out.println("Implementation"); } public static void main(String[] args) { MyAbstract obj = new MyClass(); obj.myMethod(); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. To locate a remote object with a name t at port 7000 on host panda.armstrong.edu, use
Q. What is not the use of “this” keyword in Java?
Q. Which spring module provides the capability of DI or IOC?
Q. What is the purpose of the "throws" keyword in Java method declaration?
Q. Which of the following interface is used to declare core methods in java?
Q. Which of the following method of Process class can terminate a process?
Q. What is the output of Java program with SWITCH?
Q. Which of these method returns a largest whole number less than or equal to variable X?
Q. All methods and variables in Java language are kept inside a?
Discusssion
Login to discuss.