<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ankit Virparia &#187; Difference</title>
	<atom:link href="http://ankit.co/tag/difference/feed" rel="self" type="application/rss+xml" />
	<link>http://ankit.co</link>
	<description>A Programmer, Designer and Trainer</description>
	<lastBuildDate>Sun, 11 May 2014 04:15:47 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Difference between Applet and Application</title>
		<link>http://ankit.co/tutorials/java-tutorials/applet/difference-between-applet-and-application?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=difference-between-applet-and-application</link>
		<comments>http://ankit.co/tutorials/java-tutorials/applet/difference-between-applet-and-application#comments</comments>
		<pubDate>Sat, 05 Jan 2013 18:10:57 +0000</pubDate>
		<dc:creator><![CDATA[Ankit Virparia]]></dc:creator>
				<category><![CDATA[Applet]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[Difference]]></category>

		<guid isPermaLink="false">http://ankit.co/?p=161</guid>
		<description><![CDATA[<p>Applet Application Small Program Large Program Used to run a program on client Browser Can be executed on stand alone computer system Applet is portable and can be executed by any JAVA supported browser. Need JDK, JRE, JVM installed on client machine. Applet applications are executed in a Restricted Environment Application can access all the [&#8230;]</p>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/java-tutorials/applet/difference-between-applet-and-application">Difference between Applet and Application</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></description>
				<content:encoded><![CDATA[<table width="500px" cellpadding="7px" style="width:500px;" border="1">
<tr>
<td width="250px" class="trheading">Applet</td>
<td width="250px" class="trheading">Application</td>
</tr>
<tr>
<td>Small Program </td>
<td>Large Program</td>
</tr>
<tr>
<td>Used to run a program on client Browser</td>
<td>Can be executed on stand alone computer system</td>
</tr>
<tr>
<td>Applet is portable and can be executed by any JAVA supported browser.</td>
<td>Need JDK, JRE, JVM installed on client machine.</td>
</tr>
<tr>
<td>Applet applications are executed in a Restricted Environment</td>
<td>Application can access all the resources of the computer</td>
</tr>
<tr>
<td>Applets are created by extending the java.applet.Applet</td>
<td>Applications are created by writing public static void main(String[] s) method.</td>
</tr>
<tr>
<td>Applet application has 5 methods which will be automatically invoked on occurance of specific event</td>
<td>Application has a single start point which is main method</td>
</tr>
<tr>
<td>
<p>Example:</p>
<pre>
import java.awt.*;
import java.applet.*;

public class Myclass extends Applet 
{
    public void init() { }
    public void start() { }
    public void stop() {}
    public void destroy() {}
    public void paint(Graphics g) {}
}
</pre>
</p>
</td>
<td>
<pre>
public class MyClass 
{
public static void main(String args[]) {}
}    
</pre>
</td>
</tr>
</table>
<p>The post <a rel="nofollow" href="http://ankit.co/tutorials/java-tutorials/applet/difference-between-applet-and-application">Difference between Applet and Application</a> appeared first on <a rel="nofollow" href="http://ankit.co">Ankit Virparia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ankit.co/tutorials/java-tutorials/applet/difference-between-applet-and-application/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
