Multiple choice technology web technology

Is this valid JSF JSP code ? <%@ taglib uri="http://java.sun.com/jsf/html";; prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core";; prefix="f" %>

  1. True

  2. False

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

This code is invalid. While the taglib declarations and f:view wrapper are correct, h:commandButton must be inside a form element (h:form) to function. Command buttons require form context to handle action events and submission - this code lacks the required h:form wrapper.