Basic PHP Which of the below symbols is a newline character? /n \n /r \r /n \n /r \r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; false true get clueget false true get clueget ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .ph .php .html .xml .ph .php .html .xml 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]);} AshleyBaleBlank AshleyBale ShrekBlank Shrek AshleyBaleBlank AshleyBale ShrekBlank Shrek 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. False True False True 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 1, 2 and 3 Only 3 Only 4 All of the mentioned 1, 2 and 3 Only 3 Only 4 ANSWER DOWNLOAD EXAMIANS APP