for what purpose we use applets ?
Answers were Sorted based on User's Feedback
Answer / sri
For GUI interface between the user and browser, and
browser fields can make easy with the APPLETS.
| Is This Answer Correct ? | 16 Yes | 3 No |
Answer / rajashree
Provides the classes necessary to create an applet and the
classes an applet uses to communicate with its applet
context.
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / aftab ahmad
applet are always best for user while using java language.to facilitate the user from browser ,we use applet.applet is used on browser.there is no need to write main function while using applet.
| Is This Answer Correct ? | 1 Yes | 4 No |
What are legal modifiers that we can use to declare an inner class?
Where are register variables stored?
What is the synchronized method modifier?
What is polymorphism java example?
What is class and its types?
What is the purpose of default constructor?
What are the types of statement? explain
10. class Nav{ 11. public enum Direction { NORTH, SOUTH, EAST, WEST } 12. } 13. public class Sprite{ 14. // insert code here 15. } Which code, inserted at line 14, allows the Sprite class to compile? a)Direction d = NORTH; b)Nav.Direction d = NORTH; c)Direction d = Direction.NORTH; d)Nav.Direction d = Nav.Direction.NORTH;
What is the difference between pageContext and page implicit objects in jsp?
9 Answers Gspann Technologies, Merrill Lynch, Polaris,
Explain access modifiers in java.
What is the base class in java from which all classes are derived?
Is java pass by value or pass by reference?