Basic PHP What will be the output of the following code?$foo = 'Bob';$bar = &$foo;$bar = "My name is $bar";echo $bar;echo $foo; My name is BobMy name is Bob My name is Bob Bob Error My name is BobBob My name is BobMy name is Bob My name is Bob Bob Error My name is BobBob ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1 Error 1234 2 1 Error 1234 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Euro-sign Pond-sign Yen-sign Dollar-sign Euro-sign Pond-sign Yen-sign Dollar-sign 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 . . . . . . an empty string NULL 0 gibberish value an empty string NULL 0 gibberish value ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below namespace declaration is correct? namespace ORA: namespace ORA_#; namespace 1_RA; namespace ORA; namespace ORA: namespace ORA_#; namespace 1_RA; namespace ORA; ANSWER DOWNLOAD EXAMIANS APP