Examveda
Examveda

Which one of the following is the correct abstract method?

A. public function write()

B. abstract function write()

C. abstract public write();

D. abstract public function write();

Answer: Option D

Solution(By Examveda Team)

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.

This Question Belongs to PHP >> Object Oriented Concept

Join The Discussion

Related Questions on Object Oriented Concept