Basic PHP What will be the output of the following php code?$num = 1;$num1 = 2;print $num . "+". $num1; Error 1+2 1.+.2 3 Error 1+2 1.+.2 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; get false true clueget get false true clueget ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Willam Makepiece Rasmus Lerdorf List Barely Drek Kolkevi Willam Makepiece Rasmus Lerdorf List Barely Drek Kolkevi 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 2, 3 and 4 All of the mentioned. 2 and 3 Only 2 2, 3 and 4 All of the mentioned. 2 and 3 ANSWER DOWNLOAD EXAMIANS APP
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; All of the mentioned Only 1 Both 1 and 2 Only 3 All of the mentioned Only 1 Both 1 and 2 Only 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP runs on different platforms (Windows, Linux, Unix, etc.) True False True False ANSWER DOWNLOAD EXAMIANS APP