Java Programming and Technical

Q. What is an applet?

A. Applet is a dynamic and interactive program that runs inside a web page displayed by a java capable browser

Read Solution (Total 1)

Java Other Question

Q. What is deadlock?

A. When two threads are waiting each other and can't precede the program is said to be deadlock.
Q. What is the lifecycle of an applet?

A.
init() method - Can be called when an applet is first loaded
start() method - Can be called each time an applet is started.
paint() method - Can be called when the applet is minimized or maximized.
stop() method - Can be used when the browser moves off the applet’s page.
destroy() method - Can be called when the browser is finished with the applet.