Basic PHP
What will be the output of the following code?
$foo = 'Bob';
$bar = &$foo;
$bar = "My name is $bar";
echo $bar;
echo $foo;

Error
My name is BobBob
My name is Bob Bob
My name is BobMy name is Bob

ANSWER DOWNLOAD EXAMIANS APP

Basic PHP
strval()

Accepts a value and converts it into string equivalent
None of above
Accepts a value and converts it into a string array
Accepts a value and converts it into an string dictionary

ANSWER DOWNLOAD EXAMIANS APP