11.1k views
2 votes
Whichof the following is not a correct scope when a JavaBean is usedwith JSP?applicationsessionrequestresponse

User Uri Shalit
by
7.2k points

1 Answer

4 votes

Answer: Response

Explanation: Java beans area type of class which helps in creating web pages in dynamic form by utilizing java classes in JSP page.Java helps to easily share the objects between different web pages. In java beans the scope is the accessibility of a variable that can be used during the process at any time . So, response or result can not be a scope when java beans is used with JSP because it cannot be accessed throughout.

User Qknight
by
7.2k points