Basic PHP Some PHP code might not have a namespace and therefore lives in the . . . . . . namespace. Global Automatic Default PRE Global Automatic Default PRE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$user = array("Ashley", "Bale", "Shrek", "Blank");for ($x=0; $x < count($user); $x++){if ($user[$x] == "Shrek")continue;printf ($user[$x]);} ShrekBlank AshleyBale AshleyBaleBlank Shrek ShrekBlank AshleyBale AshleyBaleBlank Shrek ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 16384 65536 1048576 2147483647 16384 65536 1048576 2147483647 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 1+2 12 3 Error 1+2 12 3 Error ANSWER DOWNLOAD EXAMIANS APP
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 BobBob My name is Bob Bob Error My name is BobMy name is Bob My name is BobBob My name is Bob Bob Error My name is BobMy name is Bob ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following php statement/statements will store 111 in variable num?1. int $num = 111;2. int mum = 111;3. $num = 111;4. 111 = $num; Only 1 Both 1 and 2 All of the mentioned Only 3 Only 1 Both 1 and 2 All of the mentioned Only 3 ANSWER DOWNLOAD EXAMIANS APP