Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; Error 1 1234 2 Error 1 1234 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Multiple namespaces cannot be defined in the same file. FALSE TRUE FALSE TRUE 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 ..... empty variable, 1 0, 1 blank string, 1 blank string, 2 empty variable, 1 0, 1 blank string, 1 blank string, 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False constant NULL the integer 0 the one-character string 0 All of Above both A and B constant NULL the integer 0 the one-character string 0 All of Above both A and B ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = "clue";$a .= "get";echo "$a"; false true clueget get false true clueget get ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP does not support numbers written in hexadecimal, octal or scientific notation. True False True False ANSWER DOWNLOAD EXAMIANS APP