What is the difference between pageContext and page
implicit objects in jsp?
Answer Posted / amit
Page and Pagecontext are implicit objects in jsp. These are created at JSP translated time. The page object represents the generated servlet instance itself and is used as a scope with in one jsp. Pagecontext is used to initilize all implicit objects for example :- page attributes, access to the request, response and session objects, as well as the JspWriter referenced by out. Refer http://modernpathshala.com/Learn/servlet-and-jsp/Interview to read servlet and jsp interview questions
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between array list and vector in java?
What is method reference in java?
Why deletion in linkedlist is fast than arraylist?
What are different types of arrays?
Explain the difference between association, aggregation and inheritance relationships.
What is difference between module and function?
Is java an open source?
Can we make the abstract methods static in java?
What one should take care of, while serializing the object?
What is the type of lambda expression?
What if static is removed from main method?
What is functional interface in java example?
How many bytes is a unicode character?
Is it possible to compare various strings with the help of == operator?
What is the purpose of using the java bean?