Which of the following constitute valid ways of importing Java classes into JSP page source?

Which of the following constitute valid ways of importing Java classes into JSP page source? 




a. <%! import java.util.*; %>
b. <%@ import java.util.* %>
c. <%@ page import="java.util.*" %>
d. None of the others



Answer: C


Learn More :