Multiple choice technology web technology

Are custom tags available in JSP 1.0? If not, how else might you implement iteration from within a JSP?

  1. Yes, but the only tags available relate to database access.

  2. No. To iterate over a collection of values, one must use scriptlet code.

  3. No, but there is a standard <iterate> tag that may be used.

  4. Yes, but custom tags will not help developers create tags for use in iterating over a collection.

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

Custom tags were introduced in JSP 1.1, not JSP 1.0. To iterate over collections in JSP 1.0, developers had to write scriptlet code (<% %> loops) directly in the JSP page. There was no standard tag in JSP 1.0, and custom tags did not exist at all in that version.