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 Only 3 All of the mentioned Only 1 Both 1 and 2 Only 3 All of the mentioned Only 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False the one-character string 0 the integer 0 constant NULL both A and B All of Above the one-character string 0 the integer 0 constant NULL both A and B All of Above 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, 2 blank string, 1 empty variable, 1 0, 1 blank string, 2 blank string, 1 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Within a namespace, for accessing the built-in PHP classes you can prefix the class name with a . . . . . and let PHP look in the global class list. percent ampersand asterix backslash percent ampersand asterix backslash 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