Define Static Block.
Answer / Arendra Kumar
A static block in Java is a block of code that is executed when a class is loaded into memory. It can be used for initializing static variables or performing one-time initialization.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is jsp usebean?
How can I set a cookie and delete a cookie from within a jsp page?
What are advantages of jsp over asp, php, pure servlets and others?
What is session tracking in jsp?
What are the implicit el objects in jsp?
Which jsp lifecycle methods can be overridden?
List the different scope values for the <jsp:usebean> tag in jsp?
i have one jsp page. inside this, String s=req.getParameter("raja");...... now we want to remove duplicate characters and o/p will be like "rj".... what is the logic?
How can we stop errors on display in a jsp page?
What is attribute in jsp?
Which one is correct order of phases in jsp life cycle?
Why do we need servlets and jsp?