A web application allows the HTML title banner to be set using a servlet context initialization parameter called titleStr. Which two properly set the title in this scenario? (Choose two.) A. <title>${titleStr}</title> B. <title>${initParam.titleStr}</title> C. <title>${params[0].titleStr}</title> D. <title>${paramValues.titleStr}</title> E. <title>${initParam[‘titleStr’]}</title>…

Given a web application in which the request parameter productID contains a product identifier. Which two EL expressions evaluate the value of the productID? (Choose two.) A. ${productID} B. ${param.productID} C. ${params.productID} D. ${params.productID[1]} E. ${paramValues.productID} F. ${paramValues.productID[0]} G. ${pageContext.request.productID}