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 TRUE ANSWER : ? YOUR ANSWER : ?
Variables always start with a ........ in PHP Euro-sign Dollar-sign Pond-sign Yen-sign TRUE ANSWER : ? YOUR ANSWER : ?
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. grant label php use TRUE ANSWER : ? YOUR ANSWER : ?
Which statement will output $x on the screen? echo “$x;”; echo “\$x”; echo “/$x”; echo “$$x”; TRUE ANSWER : ? YOUR ANSWER : ?
You can test the type of any variable with the ..... function. whattype() settype() showtype() gettype() TRUE ANSWER : ? YOUR ANSWER : ?
PHP runs on different platforms (Windows, Linux, Unix, etc.) False True TRUE ANSWER : ? YOUR ANSWER : ?
With the introduction of namespaces, the same function name can be used in multiple places. FALSE TRUE TRUE ANSWER : ? YOUR ANSWER : ?
Assigning the empty string (like ' ') to a variable automatically renders it empty. True False TRUE ANSWER : ? YOUR ANSWER : ?