Basic PHP
What will be the output of the following code?
function track() {
static $count = 0;
$count++;
echo $count;
}
track();
track();
track();

011
111
000
123

ANSWER DOWNLOAD EXAMIANS APP

Basic PHP
strval()

None of above
Accepts a value and converts it into a string array
Accepts a value and converts it into an string dictionary
Accepts a value and converts it into string equivalent

ANSWER DOWNLOAD EXAMIANS APP