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
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 000 011 123 111 000 011 123 111 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP As the namespace size grows, using namespaces can become a little repetitious, but PHP also provides the . . . . . statement, which allows you to alias a specific namespace. label grant use php label grant use php ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... both A and B double quotes none of above single quotes both A and B double quotes none of above single quotes ANSWER DOWNLOAD EXAMIANS APP
Basic PHP If $a = 12 what will be returned when ($a == 12) ? 5 : 1 is executed? Error 12 5 1 Error 12 5 1 ANSWER DOWNLOAD EXAMIANS APP