The HSF book has done little more than confuse this subject since answer 6D on page 497 states "<c

ut value="x" /> is a custom tag. I have submitted errata for this, but I need to know what the correct answer is on the REAL exam. I ask this because according the Sun, "A custom tag is a user-defined
JSP language element." This can be found at the following link:
http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPTags2.html#67760 Again, all I am looking for is what is correct for the REAL exam.
The confusion mentioned above was documented in submitted errata, which I am providing below. I will also add that although the hsf book is good, on occasion it lacks clarity (errata submitted). In addition to this issue, another example is the failure to explicitly reinforce (as opposed to package foo

the fact that jsp accessed beans/classes must be placed in a package before they are visible to the jsp.
Here is the custom tag errata:
Answer 6D suggests <c

ut value="x" /> is an example of custom tag usage. The paragraphs that follow suggests this is false. I also believe the book results in confusion in understanding what are standard and custom tags:
On page 2 of the spec (jstl-1_2-mrel2-spec.pdf), at the end of section 1.1 the spec states, "The other key aspect of JSTL is that it provides standard actions and standard EL functions...". The spec then goes on to list the 5 associated libraries. Furthermore, on page 31 in Section 5.2 is one of the few instances the spec refers to "custom" as a subject. Here is speaks of a custom action of the form "<acme:fullMoon>", which is clearly not part of jstl. Other reference suggest "custom" implies "programmer supplied/constructed".
Based on this information I am lead to believe the JSTL supplied tags are standard tags, and programmer supplied tags, which are tags not defined by the jstl spec, are custom tags. This is in fact the subject of Chapter 10, which states in the opening page, "Sometimes JSTL and standard actions aren't enough. When you need something custom...". However, the opening page of Chapter 9, which is titled, "Using JSTL", states, "Custom tags are powerful".
Based on the spec I believe there are JSP standard actions/tags, and JSTL standard action/tags. An action/tag that is not a member of the above groups is therefore considered a custom action/tag.