Anda di halaman 1dari 58

Question 1 of 20

5.0/ 5.0 Points

What is the correct HTML for creating a hyperlink?

A. <a name="">A</a>

B. <a href="http://www.example.com">example</a>

C. <a url="http://www.example.com">example</a>

D. <a>B</a>

Question 2 of 20

What is the correct syntax in HTML for creating a link on a webpage?

A. <A SRC = ghumti.html >

B. <LINK SRC= ghumti.html>

C. < A HREF = ghumti.html>

5.0/ 5.0 Points

D. <BODY LINK = ghumti.html>

Question 3 of 20

5.0/ 5.0 Points

How do I do multiple colors of text?

A. <font color-font="blue">blue</font>

B. <font font-color="blue">blue</font>

C. <font color="blue">blue</font>

Question 4 of 20

What is the correct HTML for making a checkbox?

A. <input type="checkbox" />

B. <check>

C. <input type="check" />

5.0/ 5.0 Points

D. <checkbox>

Question 5 of 20

5.0/ 5.0 Points

Which of following HTML Tag will inserting a line break?

A. <br />

B. <lb />

C. <p />

D. <break />

Question 6 of 20

5.0/ 5.0 Points

You do not have to connect to the internet to verify changes to a Web page on your
computer.

True

False

Question 7 of 20

5.0/ 5.0 Points

Which tag is used to display the numbered list?

A. <LI></LI>

B. <OL></OL>

C. <UL></UL>

D. <DL></DL>

Question 8 of 20

Which tag is used to lists the items with bullets?

A. <ul></ul>

B. <list></list>

C. <ol></ol>

D. <bullet></bullet>

5.0/ 5.0 Points

Question 9 of 20

5.0/ 5.0 Points

What is the correct HTML for making a drop-down list?

A. <select>

B. <list>

C. <input type="list" />

D. <input type="dropdown" />

Question 10 of 20

Which of the following is the correct regarding meta tag in HTML?

A. <meta name = />

B. <meta name = />

C. <meta> </meta>

5.0/ 5.0 Points

Question 2 of 20
Display results of Business Logic is responsibility of?

0.0/ 5.0 Points

A. M

B. V

C. C

D. All (M, V, C)

5.0/ 5.0 Points


Question 3 of 20
How many instances can be created per application module by the RequestProcessor
class?
A. Three

B. Uncountable instances

C. Four

D. One

Question 4 of 20
<bean:write> tag in Struts 1.x is used to ___________

0.0/ 5.0 Points

A. Define a scripting variable based on the value(s) of the specified bean property

B. Define a scripting variable based on the value(s) of the specified request parameter

C. Render an internationalized message string to the response.

D. Render the value of the specified bean property to the current JspWriter

0.0/ 5.0 Points


Question 5 of 20
To specify a form-bean of dynamic validation form, which of the following is used in
<form-bean> tag
A. type="org.apache.struts.validator.DynaValidationForm"

B. type="org.apache.struts.validator.DynaValid Form

C. type="org.apache.struts.validator.DynaValidatorForm"

D. type="org.apache.struts.validator.DynaValidateForm"

Question 6 of 20
<logic:present> tag in Struts 1.x is used to ___________

0.0/ 5.0 Points

A. Evaluate the nested body content of this tag if the requested variable is either null or an
empty string.
B. Generate the nested body content of this tag if the specified value is present in this
request.
C. Generate the nested body content of this tag if the specified value is present in this
request.
D. Evaluate the nested body content of this tag if the requested variable is not equal to the
specified value
Question 7 of 20

5.0/ 5.0 Points

Which of the following methods is overridden by Action class?


A. service()

B. destroy()

C. execute()

D. run()

5.0/ 5.0 Points


Question 8 of 20
Which of the following is performed by ActionServlet and RequestProcessor?
1.Receiving the HttpServletRequest
2.Populating JavaBean from the request parameters
3.Displaying response on the web page Issues
4.Content type issues handling
5.Provide extension points
A. 1 and 4

B. 2,3,4,5

C. 1,2,4,5

D. 3, 4, 5

Question 9 of 20
Declaration of a action as following is____________
<action-mappings>
<action path=""/logon""
type=""com.codementor.LogonAction""
name=""logonForm""
input=""/Login.jsp""
scope=""request"" >

5.0/ 5.0 Points

<forward name=""success"" path=""/Success.jsp"" />


<forward name=""failure"" path=""/Failure.html"" />
</action>
</action-mappings>
</struts-config>
True
False

Question 10 of 20
Performing DB Queries is responsibility of?

0.0/ 5.0 Points

A. M

B. V

C. C

D. All (M, V, C)

5.0/ 5.0 Points


Question 11 of 20
Which of the following tag is a valid form submission in Struts framework? [ someaction.do is a sample]
A. < html:web-form action="/some-action.do">

B. < html:form action="/some-action.do">

C. < jsp:webform action="/some-action.do">

D. < html:page-form action="/some-action.do">

Question 12 of 20

0.0/ 5.0 Points

Which validation way is used at client-side?


A. Using Form Bean class

B. Validator Framework

C. Using Action Class

D. Using javascript

Question 13 of 20
Struts framework is based on

0.0/ 5.0 Points

A. Servlet, JSP, XML and Java

B. Applet, XML and Java

C. Servlet, HTML and Java

D. Servlet, JSP and Java

Question 14 of 20
Struts framework

0.0/ 5.0 Points

A. has built-in support for the model

B. provides model components

C. should always decouple the application from a specific model implementation

D. does not support JavaBeans and EJB

Question 15 of 20
<logic:iterate> tag in Struts 1.x is used to ___________

0.0/ 5.0 Points

A. Repeat the nested body content of this tag over a map

B. Repeat the content of this tag over a list

C. Repeat the body content of this tag over an array

D. Repeat the nested body content of this tag over a specified collection

5.0/ 5.0 Points


Question 16 of 20
Which of the following tags in struts-config.xml file defines the availability of necessary
Struts JSP custom tag libraries?
A. < jsp-taglib>

B. < struts-taglib>

C. < taglib>

D. < jsp-lib>

5.0/ 5.0 Points


Question 17 of 20
Serves logical connection between users interaction and the business process is
responsibility of?
A. M

B. V

C. C

D. All (M, V, C)

Question 18 of 20
Which of the logic tags is used for repetitive output generation?

5.0/ 5.0 Points

A. < logic:iterate>

B. < logic:lessThan>

C. < login:redirect>

D. < logic:loop>

Question 19 of 20
Prefix of Struts1.x tag name used in JSP file is

5.0/ 5.0 Points

A. <html-

B. <html:

C. <s:

D. <s-

Question 20 of 20
Represents Output/Input of the application is responsibility of?

5.0/ 5.0 Points

A. M

B. V

C. C

D. All (M, V, C)

Question 1 of 20

5.0/ 5.0 Points

Struts framework is based on

A. Servlet, JSP, XML and Java

B. Servlet, HTML and Java

C. Servlet, JSP and Java

D. Applet, XML and Java

Question 2 of 20
Represents Output/Input of the application is responsibility of?

5.0/ 5.0 Points

A. M

B. V

C. C

D. All (M, V, C)

Question 3 of 20

5.0/ 5.0 Points

How many instances can be created per application module by the RequestProcessor class?

A. Three

B. Uncountable instances

C. Four

D. One

5.0/ 5.0 Points


Question 4 of 20

Which of the logic tags is used for repetitive output generation?

A. < logic:lessThan>

B. < logic:iterate>

C. < logic:loop>

D. < login:redirect>

Question 5 of 20
Prefix of Struts1.x tag name used in JSP file is

A. <s:

B. <s-

C. <html-

5.0/ 5.0 Points

D. <html:

Question 6 of 20

5.0/ 5.0 Points

Encapsulates Domain Logic which are independent of Presentation is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 7 of 20
Struts framework

A. does not support JavaBeans and EJB

B. should always decouple the application from a specific model


implementation

5.0/ 5.0 Points

C. provides model components

D. has built-in support for the model

Question 8 of 20

0.0/ 5.0 Points

To specify a form-bean of dynamic validation form, which of the following is used in <form-bean> tag

A. type="org.apache.struts.validator.DynaValidateForm"

B. type="org.apache.struts.validator.DynaValid Form

C. type="org.apache.struts.validator.DynaValidationForm"

D. type="org.apache.struts.validator.DynaValidatorForm"

Question 9 of 20
Responsible for making decision among multiple presentation is responsibility of?

A. M

5.0/ 5.0 Points

B. V

C. C

D. All (M, V, C)

Question 10 of 20

5.0/ 5.0 Points

A Form Bean class in Struts 1.x extends

A. None of above

B. ActionBean class

C. FormBean class

D. ActionForm class

Question 11 of 20

5.0/ 5.0 Points

Which of the following tags in struts-config.xml file defines the availability of necessary Struts JSP custom tag
libraries?

A. < jsp-lib>

B. < taglib>

C. < struts-taglib>

D. < jsp-taglib>

Question 12 of 20

5.0/ 5.0 Points

Declaration of a action as following is____________


<action-mappings>
<action path=""/logon""
type=""com.codementor.LogonAction""
name=""logonForm""
input=""/Login.jsp""
scope=""request"" >
<forward name=""success"" path=""/Success.jsp"" />
<forward name=""failure"" path=""/Failure.html"" />
</action>
</action-mappings>
</struts-config>

True

False

Question 13 of 20

0.0/ 5.0 Points

Which tag is used along with uri, to specify the tiles frameworks .tld file?

A. < %@taglib url="/WEB-INF/tile.tld" prefix="tiles"%>

B. < %@taglibs uri="/WEB-INF/tiles.tld" prefix="tiles"%>

C. < %@taglib uri="/WEB-INF/tlds/tiles.tld" prefix="tiles"%>

D. < %@taglib uri="/WEB-INF/tiles.tld" prefix="tiles"%>

Question 14 of 20
What is the limitation of creating ActionServlet instances per web application?

A. One

B. Three

C. Unlimited

D. Two

5.0/ 5.0 Points

Question 15 of 20

0.0/ 5.0 Points

<logic:present> tag in Struts 1.x is used to ___________

A. Evaluate the nested body content of this tag if the requested variable is not
equal to the specified value
B. Evaluate the nested body content of this tag if the requested variable is
either null or an empty string.
C. Generate the nested body content of this tag if the specified value is
present in this request.

D. Generate the nested body content of this tag if the specified value is
present in this request.

Question 16 of 20
Which of the java bean tags is used to show the bean value on the web page?

A. < bean:define>

B. < bean:write>

5.0/ 5.0 Points

C. < bean:message>

D. < bean:show>

Question 17 of 20

5.0/ 5.0 Points

Struts framework is based on

A. Servlet, JSP and Java

B. Servlet, HTML and Java

C. Servlet, JSP, XML and Java

D. Applet, XML and Java

Question 18 of 20
ActionServlet, RequestProcessor and Action classes are the components of

A. Model

5.0/ 5.0 Points

B. Controller

C. View

D. Deployment

Question 19 of 20

5.0/ 5.0 Points

Which of the following delegates the request handling to the RequestProcessor instance?

A. ActionServlet

B. Action class

C. Deployment descriptor

D. None of the above

Question 20 of 20
Display results of Business Logic is responsibility of?

0.0/ 5.0 Points

A. M

B. V

C. C

D. All (M, V, C)

Question 1 of 20

5.0/ 5.0 Points

How many instances can be created per application module by the RequestProcessor class?

A. Three

B. Uncountable instances

C. Four

D. One

Question 2 of 20

5.0/ 5.0 Points

Struts framework is based on

A. Servlet, JSP and Java

B. Servlet, HTML and Java

C. Servlet, JSP, XML and Java

D. Applet, XML and Java

Question 3 of 20

0.0/ 5.0 Points

Which is not True about ActionErrors in Struts 1.x?

A. A validation error, which can handle all errors and exceptions of application

B. A specific validation error, which will be put in the ActionErrors

C. Used in struts to contain all the errors from a validation point

D. Contains an error key (which may be used with the resourse bundle)

Question 4 of 20

5.0/ 5.0 Points

Contains data and Related Functionality is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 5 of 20
Application module selection is done by

A. Action class

B. ActionServlet

C. RequestProcessor

5.0/ 5.0 Points

D. All of the above

Question 6 of 20

5.0/ 5.0 Points

Which of the logic tags is used for repetitive output generation?

A. < logic:lessThan>

B. < logic:iterate>

C. < logic:loop>

D. < login:redirect>

Question 7 of 20

5.0/ 5.0 Points

The dispatch from the controller to the Action class is based on a configuration that is provided by a

A. struts-config.xml

B. struts-processor-conifg.xml

C. struts-action-config.xml

D. struts-configs.xml

Question 8 of 20

5.0/ 5.0 Points

Which of the following tag is a valid form submission in Struts framework? [ some-action.do is a sample]

A. < html:page-form action="/some-action.do">

B. < html:form action="/some-action.do">

C. < html:web-form action="/some-action.do">

D. < jsp:webform action="/some-action.do">

Question 9 of 20
Which of the following is performed by ActionServlet and RequestProcessor?
1.Receiving the HttpServletRequest
2.Populating JavaBean from the request parameters
3.Displaying response on the web page Issues
4.Content type issues handling
5.Provide extension points

5.0/ 5.0 Points

A. 1 and 4

B. 2,3,4,5

C. 3, 4, 5

D. 1,2,4,5

Question 10 of 20

5.0/ 5.0 Points

Which of the following acts as a bridge between user-invoked URI and a business method?

A. HttpRequest

B. ActionServlet

C. Action class

D. RequestProcessor

5.0/ 5.0 Points


Question 11 of 20

Which of the following tags in struts-config.xml file defines the availability of necessary Struts JSP custom tag
libraries?

A. < jsp-lib>

B. < taglib>

C. < struts-taglib>

D. < jsp-taglib>

Question 12 of 20

5.0/ 5.0 Points

<logic:empty> tag in Struts 1.x is used to ___________

A. Evaluate the nested body content of this tag if the requested variable is
either null or an empty string
B. Evaluate the nested body content of this tag if the specified value is an
appropriate substring of the requested variable

C. Evaluate the nested body content of this tag if the requested variable is
greater than the specified value.
D. Evaluate the nested body content of this tag if the requested variable is
equal to the specified value

Question 13 of 20

0.0/ 5.0 Points

To specify a form-bean of dynamic validation form, which of the following is used in <form-bean> tag

A. type="org.apache.struts.validator.DynaValidateForm"

B. type="org.apache.struts.validator.DynaValid Form

C. type="org.apache.struts.validator.DynaValidationForm"

D. type="org.apache.struts.validator.DynaValidatorForm"

Question 14 of 20
Which of the following delegates the request handling to the RequestProcessor instance?

A. ActionServlet

5.0/ 5.0 Points

B. Action class

C. Deployment descriptor

D. None of the above

Question 15 of 20

5.0/ 5.0 Points

MVC stands for?

A. Model / View / Controler

B. Model / View / Controller

C. Model / View / Control

D. Models / Views / Controllers

Question 16 of 20
Struts framework

5.0/ 5.0 Points

A. does not support JavaBeans and EJB

B. should always decouple the application from a specific model


implementation
C. provides model components

D. has built-in support for the model

Question 17 of 20

5.0/ 5.0 Points

Declaration of a action as following is____________


<action-mappings>
<action path=""/logon""
type=""com.codementor.LogonAction""
name=""logonForm""
input=""/Login.jsp""
scope=""request"" >
<forward name=""success"" path=""/Success.jsp"" />
<forward name=""failure"" path=""/Failure.html"" />
</action>
</action-mappings>
</struts-config>

True

False

Question 18 of 20

5.0/ 5.0 Points

Encapsulates Domain Logic which are independent of Presentation is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 19 of 20
Calculating Business Process is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

5.0/ 5.0 Points

Question 20 of 20

5.0/ 5.0 Points

Business delegate pattern

A. Hides remote services complexity

B. Reduces coupling and increases manageability

C. Eases failure recovery

D. All of the above

Question 1 of 20
Declaration of a action as following is____________
<action-mappings>
<action path=""/logon""
type=""com.codementor.LogonAction""
name=""logonForm""
input=""/Login.jsp""
scope=""request"" >
<forward name=""success"" path=""/Success.jsp"" />
<forward name=""failure"" path=""/Failure.html"" />
</action>
</action-mappings>
</struts-config>

True

5.0/ 5.0 Points

False

Question 2 of 20

5.0/ 5.0 Points

Performing DB Queries is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 3 of 20

5.0/ 5.0 Points

<logic:present> tag in Struts 1.x is used to ___________

A. Evaluate the nested body content of this tag if the requested variable is not
equal to the specified value
B. Evaluate the nested body content of this tag if the requested variable is
either null or an empty string.

C. Generate the nested body content of this tag if the specified value is
present in this request.

D. Generate the nested body content of this tag if the specified value is
present in this request.

Question 4 of 20

5.0/ 5.0 Points

Prefix of Struts1.x tag name used in JSP file is

A. <s:

B. <s-

C. <html-

D. <html:

Question 5 of 20
An instance of Action is invoked by

5.0/ 5.0 Points

A. ActionServlet

B. ActionListener

C. RequestProcessor

D. All of the above

Question 6 of 20

5.0/ 5.0 Points

To specify a form-bean of dynamic validation form, which of the following is used in <form-bean> tag

A. type="org.apache.struts.validator.DynaValidateForm"

B. type="org.apache.struts.validator.DynaValid Form

C. type="org.apache.struts.validator.DynaValidationForm"

D. type="org.apache.struts.validator.DynaValidatorForm"

5.0/ 5.0 Points


Question 7 of 20

Which of the following methods is overridden by Action class?

A. run()

B. service()

C. destroy()

D. execute()

Question 8 of 20
Which of the following is performed by ActionServlet and RequestProcessor?
1.Receiving the HttpServletRequest
2.Populating JavaBean from the request parameters
3.Displaying response on the web page Issues
4.Content type issues handling
5.Provide extension points

A. 1 and 4

B. 2,3,4,5

5.0/ 5.0 Points

C. 3, 4, 5

D. 1,2,4,5

Question 9 of 20

5.0/ 5.0 Points

Business delegate pattern

A. Hides remote services complexity

B. Reduces coupling and increases manageability

C. Eases failure recovery

D. All of the above

Question 10 of 20
Represents Output/Input of the application is responsibility of?

A. M

5.0/ 5.0 Points

B. V

C. C

D. All (M, V, C)

Question 11 of 20

5.0/ 5.0 Points

Responsible for making decision among multiple presentation is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 12 of 20
Struts framework is based on

5.0/ 5.0 Points

A. Servlet, JSP and Java

B. Servlet, HTML and Java

C. Servlet, JSP, XML and Java

D. Applet, XML and Java

Question 13 of 20

5.0/ 5.0 Points

ActionServlet, RequestProcessor and Action classes are the components of

A. Model

B. Controller

C. View

D. Deployment

0.0/ 5.0 Points


Question 14 of 20

Which of the following should always forwards or redirect to a resource (view) after completed?

A. Action class

B. HttpResponse object

C. ActionServlet

D. Request Processor

Question 15 of 20

5.0/ 5.0 Points

Which of the following tag is a valid form submission in Struts framework? [ some-action.do is a sample]

A. < html:page-form action="/some-action.do">

B. < html:form action="/some-action.do">

C. < html:web-form action="/some-action.do">

D. < jsp:webform action="/some-action.do">

Question 16 of 20

5.0/ 5.0 Points

Display results of Business Logic is responsibility of?

A. M

B. V

C. C

D. All (M, V, C)

Question 17 of 20

5.0/ 5.0 Points

Which of the following tags in struts-config.xml file defines the availability of necessary Struts JSP custom tag
libraries?

A. < jsp-lib>

B. < taglib>

C. < struts-taglib>

D. < jsp-taglib>

Question 18 of 20

5.0/ 5.0 Points

Which validation way is used at client-side?

A. Using Form Bean class

B. Validator Framework

C. Using javascript

D. Using Action Class

Question 19 of 20

5.0/ 5.0 Points

<logic:iterate> tag in Struts 1.x is used to ___________

A. Repeat the nested body content of this tag over a specified collection

B. Repeat the content of this tag over a list

C. Repeat the body content of this tag over an array

D. Repeat the nested body content of this tag over a map

Question 20 of 20

5.0/ 5.0 Points

Which is not True about ActionErrors in Struts 1.x?

A. A validation error, which can handle all errors and exceptions of application

B. A specific validation error, which will be put in the ActionErrors

C. Used in struts to contain all the errors from a validation point

D. Contains an error key (which may be used with the resourse bundle)

Question 1 of 20

Which of the following tools can be used to stress test the Servlet
1. JMeter from Apache
2. Mercury LoadRunner

5.0/ 5.0 Points

A. 1 only

B. 2 only

C. 1,2 both

D. Neither 1 nor 2.

Question 2 of 20

Which of the following can be used to access database from JSPs?

A.Custom tags

B.Scriplets

C.Directives

D.Beans

5.0/ 5.0 Points

Question 3 of 20

5.0/ 5.0 Points

URL encoding is the method of replacing all the spaces and other extra characters
into their corresponding _______ Characters

A. Octal

B. Decimal

C. Binary

D. Hex

Question 4 of 20

Which tag in the jsp is used to define the error page?

A. location

B. exception-type

C. error-page

0.0/ 5.0 Points

D. None of the above

Question 5 of 20

5.0/ 5.0 Points

The ________________________ when added to the user session tells us that the
session timed out.

A. SessionTimeoutIndicator

B. SessionTotalTimedoutIndicator

C. SessionTotalTimeOutIndicator

D. SessionTimedoutIndicator

Question 6 of 20

5.0/ 5.0 Points

Which codeline must be set before any of the lines that use the PrintWriter?

A. setPrintType()

B. setContentWriter()

C. setWriter()

D. setContentType()

Question 7 of 20

5.0/ 5.0 Points

All the ___________ data is kept at the application server ___________ data is kept at
the web server

A. dynamic, static

B. static, dynamic

C. HTML, Servlet

D. Servlet, HTML

Question 8 of 20

5.0/ 5.0 Points

The _____ method performs the cleanup of objects created during requests and
responses between clients and servers

A. Init()

B. Destroy()

C. Run()

D. Resume()

Question 9 of 20

5.0/ 5.0 Points

Implementing the tag < %@ page isThreadSafe="false" % >implements the


SingleThreadModel interface making the Jsp _________________

A. Content safe

B. Synchornised

C. Thread safe

D. None of the above

Question 10 of 20

5.0/ 5.0 Points

The three main types of JSP constructs that can be embedded in a Java Server page
are

A.Scripting Elements

B.Actions

C.Methods

D.Directives

Part 2 of 2 - Part 2

Question 11 of 20

A deployment descriptor describes

A. web component response settings

B. web component settings

45.0/ 50.0 Points

5.0/ 5.0 Points

C. web component request objects

D. All of the above

Question 12 of 20

5.0/ 5.0 Points

The tasks authentication-blocking of requests, data compression, logging and


auditing are performed by

A. servlet container

B. servlet config

C. servlet filter

D. servlet context

Question 13 of 20

5.0/ 5.0 Points

Dynamic interception of requests and responses to transform the information is


done by

A. servlet container

B. servlet context

C. servlet filter

D. servlet config

Question 14 of 20

5.0/ 5.0 Points

The life cycle of a servlet is managed by

A. servlet context

B. servlet container

C. the supporting protocol (such as http or https)

D. all of the above

5.0/ 5.0 Points


Question 15 of 20

The major difference between servlet and CGI is

A. Servlets are thread based and CGI is process based

B. Servlets executes slower compared to CGI

C. Servlet has no platform specific API, where as CGI has

D. All of the above

Question 16 of 20

5.0/ 5.0 Points

The init parameter name and value pairs that are defined in web.xml file are
handled by

A. ServletResponse object

B. ServletConfig object

C. ServletRequest object

D. ServletContext object

Question 17 of 20

5.0/ 5.0 Points

What is the disadvantage of Type-4 Native-Protocol Driver?

A. At client side, a separate driver is needed for each database.

B. It does not support to read MySQL data.

C. The driver converts JDBC calls into vendor-specific database protocol

D. Type-4 driver is entirely written in Java

Question 18 of 20

The include() method of RequestDispatcher

A. sends a request to another resource like servlet, jsp or html

B. includes resource of file like servlet, jsp or html

0.0/ 5.0 Points

C. appends the request and response objects to the current servlet

D. None of the above

Question 19 of 20

5.0/ 5.0 Points

What are the mechanisms available in ServletContextListener interface?

A. contextInit(), contextService(), contextDestroyed()

B. contextInitialized((),contextDestroyed()

C. contextInitialized(), contextService(), contextDestroyed()

D. None of the above

Question 20 of 20

5.0/ 5.0 Points

Which of the following are the session tracking techniques?

A. URL rewriting, using request object, using response object, using session

object
B. URL rewriting, using session object, using response object, using hidden
fields
C. URL rewriting, using servlet object, using response object, using cookies

D. URL rewriting, using session object, using cookies, using hidden fields

Anda mungkin juga menyukai