Answer Posted / shiva
web.xml is useful to map the url pattern given by the client
to the appropriate servlet. This is the main purpose of the
web.xml.
Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Which class represents the socket that both the client and server use to communicate with each other?
Which method returns the length of a string?
Can we override the private methods?
What is the protected method modifier?
What does n mean?
What’s the difference between applets and standalone program?
How to make a read-only class in java?
Which package has light weight components?
How can we make string upper case or lower case?
Which object oriented concept is achieved by using overloading and overriding?
Compare java and python.
how we can create packages in java?
What are the 7 types of characters?
Explain yield() method in thread class ?
Write an algorithm program in java for the following question.. In a VLSI design techniques,they used rectangles to design circuits. EVery rectangle is to be placed according to x,y coordinates. Check whether or not two rectangles overlap each other. Here overlapping of rectangles is acceptable, if 1) one rectangle intersect with other. 2) one rectangle fully covers other. The time of algorithm should not exceed o(n logn).