Multiple choice technology web technology

Using include tag improves performance of rendering a page as compared to using include directive?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The statement is FALSE. The include directive (<%@ include %>) performs better than the include tag () because the directive includes content at translation/compile time (once), while the tag includes at runtime (every request). The tag is slower but more dynamic. The claimed answer (B/False) correctly identifies this.