Basic PHP Which of the following is/are a PHP code editor?1. Notepad2. Notepad++3. Adobe Dreamweaver4. PDT Only 4 1, 2 and 3 All of the mentioned Only 3 Only 4 1, 2 and 3 All of the mentioned Only 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$team = "arsenal";switch ($team) {case "manu":echo "I love man u";case "arsenal":echo "I love arsenal";case "manc":echo "I love manc"; } I love arsenal I love arsenalI love manc I love arsenalI love mancI love manu Error I love arsenal I love arsenalI love manc I love arsenalI love mancI love manu Error ANSWER DOWNLOAD EXAMIANS APP
Basic PHP How does the identity operator === compare two values? If the two values are strings, it performs a lexical comparison It returns True only if they are both of the same type and value It bases its comparison on the C strcmp function exclusively It converts them to a common compatible data type and then compares the resulting values It converts both values to strings and compares them If the two values are strings, it performs a lexical comparison It returns True only if they are both of the same type and value It bases its comparison on the C strcmp function exclusively It converts them to a common compatible data type and then compares the resulting values It converts both values to strings and compares them ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $aVaR &$something $_10 $10_somethings ${“MyVar”} $aVaR &$something $_10 $10_somethings ${“MyVar”} ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Within a namespace, for accessing the built-in PHP classes you can prefix the class name with a . . . . . and let PHP look in the global class list. backslash ampersand percent asterix backslash ampersand percent asterix ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which version of PHP introduced Try/catch Exception? PHP 6 PHP 5.3 PHP 4 PHP 5 PHP 6 PHP 5.3 PHP 4 PHP 5 ANSWER DOWNLOAD EXAMIANS APP