What is java web technologies?
Answer / Vikrant Singh Bhadana
Java Web Technologies refer to the set of APIs and tools provided by Sun Microsystems (now Oracle) for building web applications with the Java programming language. They include Servlets, JSP, JavaServer Faces, and JavaScript Pages.
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the difference between application server and web server?
Whats the O/p of the below code snippet ? And explain how does it imply the concept of call-by-value/call-by reference. (PS : Pls ignore syntax errors) public class One { public oneA(){ sop ("Into One--");} } public class Two extends One{ public twoT(){ sop ("Into Two--"); } } public class Home { One a; Two t; public static void main(argv[]) { sop ("In Home--"); sop(a.oneA()); sop(t.oneA()); sop(a.twoT()); sop(t.twoT()); } }
What is layout manager in java?
you are to choose between two procedures,both of which copute the minimum value in an array of integers.one procedure returns the smallest integer if its array argument is empty. the other requires a nonempty array.which procedure should you choose and why?
What is ebxml?
What is the difference between load() and get()?
What is j2ee module?
What is caller principal?
What is setfocusable in java?
What is DDP?
What is container-managed persistence?
write a program, when a statement is entered, it should display in reverse order. Ex: Statement is "I am writing program in reverse order". Output should be like "order reverse in program writing am I".