PHP - Inheritance and Polymorphism
What will be the output of the following PHP code?
$a = new DateTime();
if ($a instanceof DateTime) {
echo 'Yes';
} else {
echo 'No';
}