What are the JSP implicit objects ?
JSP provides 9 implicit objects by default. They are as follows:
1) out------------ JspWriter
2) request------- HttpServletRequest
3) response----- HttpServletResponse
4) config--------- ServletConfig
5) session------- HttpSession
6) application--- ServletContext
7) pageContext PageContext
8) page---------- Object
9) exception---- Throwable
| Is This Answer Correct ? | 1 Yes | 0 No |
What is the priority of Garbage collector thread?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Name the class that is used to bind the server object with RMI Registry?
What are various types of class loaders used by jvm?
what is default length of textfield ?
What is a layout manager?
What state a thread enters, When it blocks on I/O?
Can I map more than one table in a cmp?
whether the connectionpooling used in struts?
types of exceptions
When a thread blocks on i/o, what state does it enter?
How to implement dphibernate to activate lazy loading in Flex with java ?thanx in advance!