Answer Posted / prapti mankad
An applet is a program written in the Java programming
language that can be included in an HTML page, much in the
same way an image is included in a page. When you use a
Java technology-enabled browser to view a page that
contains an applet, the applet's code is transferred to
your system and executed by the browser's Java Virtual
Machine (JVM). For information and examples on how to
include an applet in an HTML page, refer to this
description of the <APPLET> tag.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain the different types of memory used by jvm?
What is the difference between java class and bean?
How to implement RMI in Java?
How database connectivity in XML is achieved?
What class is used to create Server side object ?
What class is the top of the awt event hierarchy?
What are the call back methods in entity bean?
What is the difference between the string and stringbuffer classes?
what are the advantages of JTA over JTS?
What is the immediate superclass of the applet class?
we use MainFrame and using os390 for operating system with DB2 data base in IRAN and interest programing with java and use webspere for world wide,please help me where i should start?
What is the difference between static and non-static with examples?
What restrictions are placed on the values of each case of a switch statement?
How are commas used in the intialization and iteration parts of a for statement?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!