Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 2 1234 1 Error 2 1234 1 Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 1048576 16384 2147483647 65536 1048576 16384 2147483647 65536 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 000 011 111 123 000 011 111 123 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP strval() Accepts a value and converts it into string equivalent Accepts a value and converts it into a string array None of above Accepts a value and converts it into an string dictionary Accepts a value and converts it into string equivalent Accepts a value and converts it into a string array None of above Accepts a value and converts it into an string dictionary ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Some PHP code might not have a namespace and therefore lives in the . . . . . . namespace. Automatic Global Default PRE Automatic Global Default PRE ANSWER DOWNLOAD EXAMIANS APP