Multiple choice technology web technology

Is it possible to use EL to configure navigation rules, ex.: index.jsp?id=#{myBean.id}

  1. True

  2. False

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

The claimed answer is False (B). JSF navigation rules using do not support EL expressions in the view path. Navigation rules are static configuration defined in faces-config.xml, and EL expressions like #{myBean.id} cannot be used directly in the tag. Dynamic navigation with parameters would be handled differently in the action method or through other mechanisms.