Q. What will be the output?
Code:
namespace A;
function test() { echo 'A'; }
\A\test();
β
Correct Answer: (A)
A
Explanation: Fully qualified namespace call.