Answer Posted / satish
servlets r precomplied---jsp r postcomplied
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the map interface?
What are transaction attributes?
What is the diffrence between a local-tx-datasource and a xa-datasource?
What is RMI and what are the services in RMI?
Do you think that java should have had pointers?
What are the different methods of identifying an object?
Can we sent objects using Sockets?
what is a non-repeatable read?
whats is mean by tiles in struts
Can I run seam outside of jboss as?
What is a class loader?
Explain about thread synchronization inside a monitor?
What is the difference between RMI and Corba?
What are the different algorithms used for clustering?
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!