Answer Posted / anuj shukla
To execute an applet in a Web browser, you need to write a
short HTML text file
that contains the appropriate APPLET tag. Here is the HTML
file that executes
SimpleApplet:
<applet code="SimpleApplet" width=200 height=60>
</applet>
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Can I extend singleton class in java?
What is the buffer limit?
How do you declare a string variable?
Why does it take so much time to access an applet having swing components the first time?
What do you mean by exception handling in Java?
How do you clear an arraylist in java?
Implement a stack with push (), pop() and min() in O(1) time.
Which are the two subclasses under exception class?
Explain the reason behind ending a program with a system.exit(0)?
What mechanism does java use for memory management?
What happens if an exception is throws from an object's constructor?
When is the arraystoreexception thrown?
What is the difference between preemptive scheduling and time slicing?
Explain the public class modifier?
What is the difference between call by reference and call by pointer?