Basic PHP What will be the output of the following php code?$num = 1;$num1 = 2;print $num . "+". $num1; 1.+.2 1+2 Error 3 1.+.2 1+2 Error 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False both A and B the one-character string 0 All of Above constant NULL the integer 0 both A and B the one-character string 0 All of Above constant NULL the integer 0 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What is the limit of a PHP integer value? 2147483647 65536 16384 1048576 2147483647 65536 16384 1048576 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP All classes in the same namespace or subnamespace don’t have to the declared in the same PHP file. FALSE TRUE FALSE TRUE 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 3 Only 1 Both 1 and 2 All of the mentioned Only 3 Only 1 Both 1 and 2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What does PHP stand for?1. Personal Home Page2. Hypertext Preprocessor3. Pretext Hypertext Processor4. Preprocessor Home Page Only 2 Both 1 and 2 Both 2 and 4 Both 1 and 3 Only 2 Both 1 and 2 Both 2 and 4 Both 1 and 3 ANSWER DOWNLOAD EXAMIANS APP