Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; false clueget true get false clueget true get ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which statement will output $x on the screen? echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; echo “\$x”; echo “$x;”; echo “/$x”; echo “$$x”; ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? &$something ${“MyVar”} $_10 $10_somethings $aVaR &$something ${“MyVar”} $_10 $10_somethings $aVaR 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. asterix ampersand percent backslash asterix ampersand percent backslash ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is/are a PHP code editor?1. Notepad2. Notepad++3. Adobe Dreamweaver4. PDT All of the mentioned Only 3 1, 2 and 3 Only 4 All of the mentioned Only 3 1, 2 and 3 Only 4 ANSWER DOWNLOAD EXAMIANS APP