Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); Error 5 === 5 False 1 Error 5 === 5 False 1 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 Bob Bob My name is BobMy name is Bob My name is BobBob Error My name is Bob Bob My name is BobMy name is Bob My name is BobBob Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 1048576 2147483647 65536 16384 1048576 2147483647 65536 16384 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the conditional statements is/are supported by PHP?1. if statements2. if-else statements3. if-elseif statements4. switch statements All of the mentioned. Only 1 1, 2 and 4 2, 3 and 4 All of the mentioned. Only 1 1, 2 and 4 2, 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below namespace declaration is correct? namespace ORA; namespace 1_RA; namespace ORA_#; namespace ORA: namespace ORA; namespace 1_RA; namespace ORA_#; namespace ORA: ANSWER DOWNLOAD EXAMIANS APP