web technology Online Quiz - 127
Description: web technology Online Quiz - 127 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
What is used as a separator in a domain name ?
which of the below is one of the pega guardrail if flow contains more than 15 shapes
What is happening behind the scenes is that your JSP is being turned into a Java file, compiled and loaded. This compilation only happens once, so after the first load, the file doesn't take long to load anymore.
JSP simply puts Java inside HTML pages. You can take any existing HTML page and change its extension to ".jsp" instead of ".html".
Jsp Page can be excuted from the below, (choose multiple)
What tools can be used to generate the multiple views in jsp?
What line of code below might be combined in the same JSP page with a validation guard (for example, ), in order to create an alternate flow of control for scenarios in which exceptions arise. The validationGaurd method might throw an exception, which should cause the flow of control to continue in another user-defined page (assume JSP 1.0).
What is the difference between doing an include or a forward with a RequestDispatcher?
What is the initial contact point for handling a web request in a Page-Centric architecture?
Are custom tags available in JSP 1.0? If not, how else might you implement iteration from within a JSP?
Choose the statement that best describes how to connect JSP pages and Enterprise JavaBeans (EJBs):
What type of scriptlet code is better-suited to being factored forward into a servlet?
What alternatives exist to embedding Java code directly within the HTML markup of your JSP page?
Why use RequestDispatcher to forward a request to another resource, instead of using a sendRedirect?
What is a benefit of using JavaBeans to separate business logic from presentation markup within the JSP environment?
Choose the statement that best describes the relationship between JSP and servlets:
A tag library is a collection of custom tags.
Inside which HTML element do we put the JavaScript?
What is the correct JavaScript syntax to write "Hello World"?
Where is the correct place to insert a JavaScript?