Basic PHP Which of the below statements is equivalent to $add += $add ? $add = $add $add = $add + $add + 1 $add = $add + 1 $add = $add +$add $add = $add $add = $add + $add + 1 $add = $add + 1 $add = $add +$add ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is/are a PHP code editor?1. Notepad2. Notepad++3. Adobe Dreamweaver4. PDT 1, 2 and 3 All of the mentioned Only 4 Only 3 1, 2 and 3 All of the mentioned Only 4 Only 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$color = "maroon";$var = $color[2];echo "$var"; a Error $var r a Error $var r 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]);} ShrekBlank Shrek AshleyBale AshleyBaleBlank ShrekBlank Shrek AshleyBale AshleyBaleBlank ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following must be installed on your computer so as to run PHP script?1. Adobe Dreamweaver2. PHP3. Apache4. IIS Only 2 All of the mentioned. 2 and 3 2, 3 and 4 Only 2 All of the mentioned. 2 and 3 2, 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP strval() Accepts a value and converts it into an string dictionary None of above Accepts a value and converts it into string equivalent Accepts a value and converts it into a string array Accepts a value and converts it into an string dictionary None of above Accepts a value and converts it into string equivalent Accepts a value and converts it into a string array ANSWER DOWNLOAD EXAMIANS APP