Multiple choice technology programming languages

An entry should be made in which file to register a JSF tag component class for writing a custom UI component

  1. web.xml

  2. *.tld

  3. faces-config.xml

  4. applicationcontext.xml

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

To register a custom JSF tag component class, you must make an entry in faces-config.xml. This is the JSF configuration file where components, validators, converters, and other JSF artifacts are declared. The web.xml file is for general web app configuration, while .tld files are for JSP tag libraries.