Basic Php - Study Mode

[#6] With the introduction of namespaces, the same function name can be used in multiple places.
Correct Answer

(A) TRUE

[#7] 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.
Correct Answer

(D) backslash

[#8] Multiple namespaces cannot be defined in the same file.
Correct Answer

(B) FALSE

[#9] 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.
Correct Answer

(C) use

[#10] Which of the below symbols is a newline character?
Correct Answer

/n

Explanation

Solution: PHP treats
as newline character.