How do you load an HTML page from an Applet ?

Answers were Sorted based on User's Feedback



How do you load an HTML page from an Applet ?..

Answer / guest

by appletviewer or a web browser

Is This Answer Correct ?    0 Yes 2 No

How do you load an HTML page from an Applet ?..

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

Post New Answer

More Core Java Interview Questions

what are the analysis of an object

2 Answers  


Will the jvm load the package twice at runtime?

0 Answers  


How does compareto work in java?

0 Answers  


Why do we use predicate in java?

0 Answers  


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); } }

1 Answers  


What is array command?

0 Answers  


What is set in java?

0 Answers  


What is the unit of plancks constant?

0 Answers  


How do you change an int to a string?

0 Answers  


What is local class in java?

0 Answers  


What is data member in java?

0 Answers  


Why is the main method static?

0 Answers  


Categories