Multiple choice technology programming languages

Which of the following statement is true for the include directive Can be used to incorporate contents from static documents

  1. It offers option of sharing local variables and better run time efficiency

  2. Provides benefit of automatic recompilation

  3. It is processed during translation and compilation and does not impose any restrictions on output buffering

  4. none of the above

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

The JSP include directive (<%@ include file="..." %>) merges the content of the target file into the calling page during translation. This allows sharing of local variables and offers better runtime efficiency compared to dynamic inclusion.