Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; clueget true get false clueget true get false ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False both A and B the integer 0 constant NULL the one-character string 0 All of Above both A and B the integer 0 constant NULL the one-character string 0 All of Above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 3 12 1+2 Error 3 12 1+2 Error 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 ..... blank string, 2 blank string, 1 empty variable, 1 0, 1 blank string, 2 blank string, 1 empty variable, 1 0, 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Pond-sign Euro-sign Yen-sign Dollar-sign Pond-sign Euro-sign Yen-sign Dollar-sign ANSWER DOWNLOAD EXAMIANS APP
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