Q
Which of the following PHP tags is deprecated and should be avoided?

Answer & Solution

Answer: Option C
Solution:
The short opening tag <? ... ?> is deprecated and should be avoided in favor of <?php ... ?> for compatibility and consistency.
Related Questions on Average

What is the output of the following code? <?php for ($i = 0; $i < 3; $i++) { echo $i . ', '; } ?>

A). 0, 1, 2,

B). 1, 2, 3,

C). 0, 1, 2

D). 1, 1, 1,

Which of the following statements correctly assigns the value 'John' to the variable $name in PHP?

A). $name = 'John';

B). 'John' = $name;

C). $name -> 'John';

D). $name <- 'John';

What is the file extension for PHP scripts?

A). .html

B). .php

C). .js

D). .css

Which function is used to retrieve the value of a query string parameter in PHP?

A). $_GET[]

B). $_POST[]

C). $_SESSION[]

D). $_COOKIE[]

Which PHP function is used to check if a file exists in PHP?

A). file_exists()

B). is_file()

C). exists()

D). check_file()

What does the $_POST superglobal array contain in PHP?

A). Data submitted via an HTML form using the POST method

B). Data submitted via an HTML form using the GET method

C). Data stored in cookies

D). Data stored in session variables

What is the output of the following code? <?php $a = 10; $b = 5; echo ($a > $b) ? 'Yes' : 'No'; ?>

A). Yes

B). No

C). 1

D). 0

Which of the following statements is true about PHP's include and require functions?

A). include will only produce a warning if the file cannot be found, while require will produce an error

B). include will produce an error if the file cannot be found, while require will only produce a warning

C). Both include and require will produce an error if the file cannot be found

D). Both include and require will only produce a warning if the file cannot be found

What is the output of the following code? <?php $name = 'Alice'; echo 'Hello, $name!'; ?>

A). Hello, $name!

B). Hello, Alice!

C). Nothing (empty output)

D). Syntax error

What does the following code output? <?php echo 5 + 3 * 2; ?>

A). 16

B). 11

C). 10

D). 6