How do you load an HTML page from an Applet ?
Answers were Sorted based on User's Feedback
Answer / 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 |
what are the analysis of an object
Will the jvm load the package twice at runtime?
How does compareto work in java?
Why do we use predicate in java?
What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
What is array command?
What is set in java?
What is the unit of plancks constant?
How do you change an int to a string?
What is local class in java?
What is data member in java?
Why is the main method static?