Multiple choice technology programming languages

The tag is:

  1. Always converts HTML markup to entity equivalents, like <

  2. Never converts HTML markup to entity equivalents

  3. Converts markup when filter=true

  4. Converts markup when markup=false

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

The tag in Struts bean library converts HTML markup to entity equivalents (like < becoming <) ONLY when the filter attribute is set to true (option C). When filter is false, markup passes through unchanged. Options A and B are incorrect because the behavior is conditional, not absolute. Option D uses wrong attribute name.