PHP does not support numbers written in hexadecimal, octal or scientific notation.
Select an option to see the answer and solution.
PHP ..... demand that you declare a data type when you create a variable.
Select an option to see the answer and solution.
strval()
A. Accepts a value and converts it into a string array
B. Accepts a value and converts it into an string dictionary
C. Accepts a value and converts it into string equivalent
D. None of above
Select an option to see the answer and solution.
What is the limit of a PHP integer value?
A. 16384
B. 65536
C. 1048576
D. 2147483647
Select an option to see the answer and solution.
PHP considers the following values as False
A. the integer 0
B. the one-character string 0
C. constant NULL
D. both A and B
E. All of Above
Select an option to see the answer and solution.
With the introduction of namespaces, the same function name can be used in multiple places.
Select an option to see the answer and solution.
Within a namespace, for accessing the built-in PHP classes you can prefix the class name with a . . . . . and let PHP look in the global class list.
A. percent
B. ampersand
C. asterix
D. backslash
Select an option to see the answer and solution.
Which of the below namespace declaration is correct?
A. namespace ORA:
B. namespace 1_RA;
C. namespace ORA;
D. namespace ORA_#;
Select an option to see the answer and solution.
Multiple namespaces cannot be defined in the same file.
Select an option to see the answer and solution.
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.
Select an option to see the answer and solution.
Some PHP code might not have a namespace and therefore lives in the . . . . . . namespace.
A. Default
B. Global
C. PRE
D. Automatic
Select an option to see the answer and solution.
All classes in the same namespace or subnamespace don’t have to the declared in the same PHP file.
Select an option to see the answer and solution.
It is possible to create a hierarchy of namespaces in PHP.
Select an option to see the answer and solution.
The value of __NAMESPACE__ is a string that contains the current namespace name. In global, un-namespaced code, it contains . . . . . .
A. NULL
B. 0
C. an empty string
D. gibberish value
Select an option to see the answer and solution.