Brief the life cycle of an applet.
Answer / nashiinformaticssolutions
The life cycle of an applet involves the following.
1. Initialization
2. Start
3. Stop
4. Destroy
5. Paint
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Mutex (Mutual Exclusion Object) ?
What is difference between word and integer?
Why is java multithreaded?
What is difference between synchronize and concurrent collection in java?
Can we restart a dead thread in java?
What is the core java?
What are inner classes or non static nested classes in java?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
Difference between overloading and overridding?
What is instance synchronization?
What is class variable java?
what is the purpose of the final in the try-catch-final