

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following code?function track() { static $count = 0; $count++; echo $count; } track(); track(); track(); |
A. | 123 |
B. | 111 |
C. | 000 |
D. | 011 |
Answer» B. 111 | |