Basic PHP What will be the output of the following php code?$num = 1;$num1 = 2;print $num . "+". $num1; Error 3 1+2 1.+.2 Error 3 1+2 1.+.2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1 Error 1234 2 1 Error 1234 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; true clueget false get true clueget false get ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$color = "maroon";$var = $color[2];echo "$var"; r a Error $var r a Error $var ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Rasmus Lerdorf List Barely Willam Makepiece Drek Kolkevi Rasmus Lerdorf List Barely Willam Makepiece Drek Kolkevi 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