init() & destroy() ---methods can ONLY BE CALLED ONCE!
A
Correct answer
Explanation
The servlet lifecycle guarantees that init() is called only once when the servlet is first loaded, and destroy() is called only once when the servlet is being removed from service. The servlet container manages these calls and developers should never call them manually. This once-only behavior ensures proper initialization and cleanup of servlet resources.