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 include directive (<%@ include %>) is processed at translation time (compile-time) and is faster, while the include tag () is processed at request time (runtime) and slower. The question incorrectly claims the tag is more performant. The directive actually provides better performance for static content.