Which is a valid list of component scopes?
A.
Singleton, Session, Request
B.
Global, Session, Request, Dynamic
C.
Singleton, Prototype,Request, and Session
D.
Global, Session, Request, and Window
E.
Singleton, Global, Session,Request
Explanation:
An application component can be set to one of the following scopes:
*Global: Component is shared among all users.
*Session: Separate instances of the component are provided to each user.
*Request: Separate instances of the component are provided to each active request.
Note: ATG support Window scope which allows you to associate specific component instances
with a specific browser window. Such components need to live longer than a request and also
need to be different for every browser window associated with the user’s session.