Answer:
A. true
Explanation:
Step 1: int fun(int); This is prototype of function fun().It tells the compiler that the function fun() accept one integer parameter and returns an integer value.. Step 2: int i=3; The variable i
The correct answer is c. IG: @helloimlalo
Answer:
*jspService()
Explanation:
These are the steps in JSP life cycle.
1. Conversion JSP page to Servlet
.
2.Compilation of JSP page(test.java)
3.Class is loaded (test.java to test.class)
4.Instantiation (Object is created)
5.Initialization (jspInit() method is only called once at the time of servlet generation )
6.Request processing(_jspService() method is used for serving requests by JSP)
7.JSP Cleanup (jspDestroy() method is used for removing JSP from use)
There is no *jspService() method in the JSP life cycle.
Answer:
what I don't understand your question