Tell me the difference between an applet and a Japplet?
A JApplet is a modern Applet. It is also an Applet since it
extends Applet and could therefore do anything an Applet
can do. JApplet is part of the javax.swing-packet and is
therefor compatible with swing components, the new graphcs
component packet preferable before the old java.awt. For
new applications JApplet is recommended. Only if you are
designing an applet for an old java-version you should use
Applet.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is age discrete or continuous?
I have multiple constructors defined in a class. Is it possible to call a constructor from another constructor’s body?
I have a String s = java; What is the output when I say s.replaceAll('j', 'k'); Also what is the value of s after replacing?
How to sort a collection of custom Objects in Java?
What is field name?
When do you create an index?
What is the difference between overriding & overloading?
How the threads are synchronized?
What are the restriction imposed on a static method or a static block of code?
Is arraylist zero based?
How do you achieve singleton?
how many access specifiers are available in java