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; Both 1 and 2 All of the mentioned Only 1 Only 3 Both 1 and 2 All of the mentioned Only 1 Only 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Willam Makepiece List Barely Drek Kolkevi Rasmus Lerdorf Willam Makepiece List Barely Drek Kolkevi Rasmus Lerdorf ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; true clueget get false true clueget get false ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False both A and B All of Above the one-character string 0 constant NULL the integer 0 both A and B All of Above the one-character string 0 constant NULL the integer 0 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the below statements is equivalent to $add += $add ? $add = $add + 1 $add = $add + $add + 1 $add = $add $add = $add +$add $add = $add + 1 $add = $add + $add + 1 $add = $add $add = $add +$add ANSWER DOWNLOAD EXAMIANS APP
Basic PHP If you echo a Boolean variable, the value FALSE displays as a .... and the value TRUE echoes as a ..... 0, 1 empty variable, 1 blank string, 1 blank string, 2 0, 1 empty variable, 1 blank string, 1 blank string, 2 ANSWER DOWNLOAD EXAMIANS APP