balu


{ City } hyderabad
< Country > india
* Profession *
User No # 91477
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 28
Users Marked my Answers as Wrong # 6
Questions / { balu }
Questions Answers Category Views Company eMail




Answers / { balu }

Question { Infrasoft, 37414 }

we cant Override Jsp Service method?Why?


Answer

The content what we are written in the JSP will go into
_jspService()method because we are implicitly implemented
it.if we again try to override explicitly, the JSP compiler
given error as " THE METHOD IS ALREADY IMPLEMENTED AND CAN'T
OVERRIDE" but in case of other two methods we are not
implementing it in the jsp.therefore the jsp compiler will
allow we can override jspInit() and jspDestroy().

Any method which are not to be overridden by the end
user are typically written starting with an '_'.

Is This Answer Correct ?    16 Yes 4 No

Question { eClinical Solutions, 6325 }

what is the difference between System.exit() and
System.exit(1)?


Answer

A non-zero exit status code, usually indicates abnormal termination. if n != 0, its up to the programmer to apply a meaning to the various n's.

From http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html

Is This Answer Correct ?    12 Yes 2 No