---
title: "What is the lifecycle of an applet?"  
description: "What is the lifecycle of an applet?"  
author: "Pushpendra Singh"  
published: 2010-10-25  
updated: 2020-09-21  
canonical: https://www.mindstick.com/interview/179/what-is-the-lifecycle-of-an-applet  
category: "java"  
tags: ["java"]  
reading_time: 1 minute  

---

# What is the lifecycle of an applet?

**Lifecycle methods of an Applet:** \
\
**init():** This method is called to initialized an applet\
\
**start():** This method is called after the initialization of the applet.\
\
**stop():** This method can be called multiple times in the life cycle of an Applet.\
\
**destroy():** This method is called only once in the life cycle of the applet when applet is destroyed.\
\

## Answers

### Answer by Pushpendra Singh

**Lifecycle methods of an Applet:** \
\
**init():** This method is called to initialized an applet\
\
**start():** This method is called after the initialization of the applet.\
\
**stop():** This method can be called multiple times in the life cycle of an Applet.\
\
**destroy():** This method is called only once in the life cycle of the applet when applet is destroyed.\
\


---

Original Source: https://www.mindstick.com/interview/179/what-is-the-lifecycle-of-an-applet

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
