minu


{ City } bangalore
< Country > india
* Profession * software engg
User No # 12933
Total Questions Posted # 3
Total Answers Posted # 2

Total Answers Posted for My Questions # 10
Total Views for My Questions # 52767

Users Marked my Answers as Correct # 24
Users Marked my Answers as Wrong # 0
Questions / { minu }
Questions Answers Category Views Company eMail

how to connect one jsp page to another jsp page????

IIT, Symphony,

6 Core Java 45457

Same common question what is Map,Set,HashMap,List????

Symphony,

4 Core Java 5790

how to open and edit XML file in Weblogic???

Symphony,

Core Java 1520




Answers / { minu }

Question { Satyam, 4952 }

whats the life cycle of jsp


Answer

1.Translation Phase
2.Compilation Phase
3.Loading Creating an object
than
4.init: jspinit()
When the Jsp page is initialized,this method is
invoked.or The container that invoke the _jspinit(); method
initializs this page.
5.Service: jspservice()
The container, the _jspservice(); method is generated
and then called to handle each request.

6.Destroy: jspdestory()
when the JSP page is destoryed, the _jspdestory();
method is primarily invoked.

Is This Answer Correct ?    10 Yes 0 No

Question { GE, 7159 }

Difference between String and StringBuffer.


Answer

hi
i am agree with Madhu ,
String is an immutable object. StringBuffer is a mutable
object.
immutable object:If you are not allowed to change the value
of an object, it is immutable object.

mutable object: If a object value is changeable then we can
call it as Mutable object.

Is This Answer Correct ?    14 Yes 0 No