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. use php label grant use php label grant ANSWER DOWNLOAD EXAMIANS APP
Basic PHP The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . . 0 NULL gibberish value an empty string 0 NULL gibberish value an empty string ANSWER DOWNLOAD EXAMIANS APP
Basic PHP When a simple data type is casted to an array, an array is created with the original value in the first element. True False True False ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 2147483647 65536 16384 1048576 2147483647 65536 16384 1048576 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of following variables can be assigned a value to it?1. $3hello2. $_hello3. $this4. $This All of the mentioned 2, 3 and 4 Only 2 2 and 4 All of the mentioned 2, 3 and 4 Only 2 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; ANSWER DOWNLOAD EXAMIANS APP