Which two approaches would result in the current date being added to the output of a JSP? (Choose two.)
<%= out.printIn(new java.util.Date()) %>
<% out.printIn(new java.util.Date()); %>
<%= new java.util.Date() %>
<% System.out.printIn(new java.util.Date()); %>
References:
Submit