Tag: technology
Questions Related to technology
-
Open Data Base Connectivity
-
Open Data Base Connection
-
Oracle Data Base Connectivity
-
Oracle Data Base Connection
-
Ctrl + E
-
Alt + E
-
Shift + E
-
Alt + Ctrl + E
-
Connection
-
Command
-
Parameter
-
Error
-
Field
-
DSN
Correct Option: A,B,C,D,E
-
Define a listener class implementing HttpSessionListener and whenever an object is added to Http Session object, keep track of the number of instances.
-
Define a listener class implementing HttpSessionBindingListener and in the valueBound() method, keep track of the number of instances being added in a static variable.
-
It is highly impossible to keep track the number of objects being added to a Http Session in a Web Application.
-
The Servlet API provides direct support for keeping track the object instances.
-
Use the method 'HttpServletRequest.getParameterNames()' which will return an enumeration of parameter names.
-
Use the method 'HttpServletResponse.getParameterNames()' which will return an enumeration of parameter names.
-
Use the method 'HttpServletRequest.getAllParameters()' which will return an enumeration of parameter names.
-
There is no direct support in the Servlet API to retrieve the name of all the parameters sent by the client.
-
The value of the 'test' variable will be 2.
-
The value of the 'test' variable will be 0.
-
The value of the 'test' variable will be 1.
-
The variable 'test' must be declared at global scope, else a run-time error will occur