Basic PHP We can use _________ to comment a single line?1. /?2. //3. #4. /* */ Both 2 and 4 Only 2 1, 3 and 4 2, 3 and 4 Both 2 and 4 Only 2 1, 3 and 4 2, 3 and 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Variables always start with a ........ in PHP Pond-sign Dollar-sign Yen-sign Euro-sign Pond-sign Dollar-sign Yen-sign Euro-sign 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. backslash percent ampersand asterix backslash percent ampersand asterix ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; 1+2 3 Error 12 1+2 3 Error 12 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP When a simple data type is casted to an array, an array is created with the original value in the first element. True False True False ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... none of above double quotes single quotes both A and B none of above double quotes single quotes both A and B ANSWER DOWNLOAD EXAMIANS APP