Basic PHP You can test the type of any variable with the ..... function. showtype() settype() whattype() gettype() showtype() settype() whattype() gettype() ANSWER DOWNLOAD EXAMIANS APP
Basic PHP With the introduction of namespaces, the same function name can be used in multiple places. FALSE TRUE FALSE TRUE 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; Error My name is BobMy name is Bob My name is Bob Bob My name is BobBob Error My name is BobMy name is Bob My name is Bob Bob My name is BobBob ANSWER DOWNLOAD EXAMIANS APP
Basic PHP When a simple data type is casted to an array, an array is created with the original value in the first element. True False True False ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? ${“MyVar”} &$something $aVaR $10_somethings $_10 ${“MyVar”} &$something $aVaR $10_somethings $_10 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the looping statements is/are supported by PHP?1. for loop2. while loop3. do-while loop4. foreach loop All of the mentioned None of the mentioned 1 and 2 1, 2 and 3 All of the mentioned None of the mentioned 1 and 2 1, 2 and 3 ANSWER DOWNLOAD EXAMIANS APP