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 and 2 All of the mentioned 1, 2 and 3 1, 2 and 4 1 and 2 All of the mentioned 1, 2 and 3 1, 2 and 4 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP As the namespace size grows, using namespaces can become a little repetitious, but PHP also provides the . . . . . statement, which allows you to alias a specific namespace. use php label grant use php label grant ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following PHP code?$score = 1234;$scoreboard = (array) $score;echo $scoreboard[0]; 1 Error 2 1234 1 Error 2 1234 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... none of above both A and B double quotes single quotes none of above both A and B double quotes single quotes ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 011 123 000 111 011 123 000 111 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP considers the following values as False both A and B constant NULL the one-character string 0 the integer 0 All of Above both A and B constant NULL the one-character string 0 the integer 0 All of Above ANSWER DOWNLOAD EXAMIANS APP