PHP Programming Quiz 1 PHP Programming Quiz 1 Exception handling through try-catch statements were introduced in ……….PHP 2PHP 3PHP 4PHP 5PHP was developed by ……….Bill GatesRasmus LerdorfMark ZuckerbergMicrosoftecho "<br>" means ……….display brdisplay line breakNone on above………. functions are not supported in PHP?privatepublicfinalfriendlyA class is inherited as ……….class A:Bclass A::Bclass A extends Bclass A inherits B………. regular expression can be used to match a string having one or more Ps in it.$p?p*P?$p*Variables of current session can be deleted by using ………. function.session_clear()session_delete()session_remove()session_unset()PHP script ends with ………. tag.htmlphp???php?Arrays should be accessed through ……….while loopdo-while loopfor loopforeach loopObject of a class Person can be declared in PHP as ……….Person $obj = new Person;Person $obj = new Person();$obj = new Person;$obj = new Person ();