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 |
Are maps ordered java?
What is class??
What is the purpose of default constructor?
what is use of business objects?
Is a method a procedure?
What does \ mean in regex?
Why do we need wrapper classes?
Is c better than java?
What happens if we don’t override run method ?
What is the default value of the local variables?
What are the advantages of inner classes?
There is a Banking application. It has 2 types of account, Savings and Current. Write a method calculateInterest by passing an ArrayList of these account objects and calculate Interest accordingly. Write code for this situation