Basic PHP Which of the below symbols is a newline character? \n /n /r \r \n /n /r \r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP files have a default file extension of_______. .html .php .xml .ph .html .php .xml .ph ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$a = 5;$b = 5;echo ($a === $b); Error 1 False 5 === 5 Error 1 False 5 === 5 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$color = "maroon";$var = $color[2];echo "$var"; a Error $var r a Error $var r ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Which of the following PHP statements will output Hello World on the screen?1. echo (“Hello World”);2. print (“Hello World”);3. printf (“Hello World”);4. sprintf (“Hello World”); 1, 2 and 3 1 and 2 1, 2 and 4 All of the mentioned 1, 2 and 3 1 and 2 1, 2 and 4 All of the mentioned ANSWER DOWNLOAD EXAMIANS APP