Which one of the following is the correct abstract method?

Which one of the following is the correct abstract method? Correct Answer abstract public function write();

An abstract method cannot have an implementation. You declare it in the normal way, but end the declaration with a semicolon rather than a method body.

Related Questions

Which of the following declares an abstract method in an abstract Java class?
If a class is extending/inheriting another abstract class having abstract method, then _______________________