Hi Krishna,
There are total 9 implicit variables, that are available to jsp page. viz application, session, request, response, out, page, pageContext, config, exception.
Because the page author does not(and can not) declare these variables explicitly, they are called implicit variables. The objects that these variables refer to are created by the servlet container and are called implicit objects.
ex.
Even though we have not defined the variable out in this example, the code will translate, compile and execute without errors. This is because out is one of nine variables that the JSP engine implicitly makes available to the JSP page.
Hope this clears your idea about implicit objects. :thumb: