

MCQOPTIONS
Saved Bookmarks
1. |
In the PHP code given below, what is/are the properties? < ?php class Example { public $name; function Sample() { echo "This is an example"; } } ?> |
A. | echo “This is an example”; |
B. | public $name; |
C. | class Example |
D. | function sample() |
Answer» C. class Example | |