For an interview I would like to answer this in the following manner;
What exactly do I understand by JSP internal object? Spell the Implicit objects and take one object as an example and elabaorate as to the usage.
JSP internal objects are objects exposed by JSP container to the developer and they are also referred to as IMPLICIT objects.
Nine implicit objects:
Request Response Out Page Config Session Application Page Context Exception
Now If I take one implicit Object like the SESSION object :
Session object is a connection between user and the server heps to deiffernetiate between users .It stores info about a users session.Allows information to be passed back to a cookie on the client side. Allow information to be shared across pages etc.