Basic PHP Which of the following php statement/statements will store 111 in variable num?1. int $num = 111;2. int mum = 111;3. $num = 111;4. 111 = $num; Only 1 All of the mentioned Only 3 Both 1 and 2 Only 1 All of the mentioned Only 3 Both 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Drek Kolkevi Willam Makepiece List Barely Rasmus Lerdorf Drek Kolkevi Willam Makepiece List Barely Rasmus Lerdorf ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following is not valid PHP code? $aVaR $10_somethings &$something $_10 ${“MyVar”} $aVaR $10_somethings &$something $_10 ${“MyVar”} 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 1234 Error 2 1 1234 Error 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$total = "25 students";$more = 10;$total = $total + $more;echo "$total"; Error 35 35 students 25 students Error 35 35 students 25 students ANSWER DOWNLOAD EXAMIANS APP