<?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"
	>

<channel>
	<title>Fresher Interview Questions &#187; Java</title>
	<atom:link href="http://www.freshershome.com/interview-questions/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.freshershome.com/interview-questions</link>
	<description>Interview Questions for Freshers</description>
	<pubDate>Tue, 23 Sep 2008 01:32:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
	<language>en</language>
			<item>
		<title>Agile Java Questions</title>
		<link>http://www.freshershome.com/interview-questions/java/agile-java-questions/</link>
		<comments>http://www.freshershome.com/interview-questions/java/agile-java-questions/#comments</comments>
		<pubDate>Mon, 10 Sep 2007 06:17:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.freshershome.com/interview-questions/java/agile-java-questions/</guid>
		<description><![CDATA[ java:
(1)find out three keywords
(a)synchronized
(b)implement
(c)throws

etc
(2)which are not keywords
(a)NULL
(b)synchronize
etc
(3)two to three questions on legal array declaration
(a)int a[][]=new int[3][3];
(b)int[] a[]=new int[3][3];
(c)int a[3][4]=new int[3][4];wrong
(d)int[3][4] a=new int[3][4];wrong
(e)int a[][]=new int[3][4];
(4)++i+++j is equivalent to
(a)i+j+1
(b)i+j+2
(c)i+j
(d)can&#8217;t be compiled(correct)
(5)the content of the array after execution of following statement:int a[][]=new int[3][3];
(a)all elements contain zeros
(6)find legal statements
(a)int a=30;
(b)float f=1.4;(error)
(c)double d=34.5;
(d)byte b=128;(error)
(7)find illegal statements
(a)int i=&#8217;2&#8242;;
(b)char a=12;
(8)some 5 [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/agile-java-questions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java Web development interview questions</title>
		<link>http://www.freshershome.com/interview-questions/java/java-web-development-interview-questions/</link>
		<comments>http://www.freshershome.com/interview-questions/java/java-web-development-interview-questions/#comments</comments>
		<pubDate>Sat, 21 Jul 2007 06:40:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.freshershome.com/interview-questions/?p=30</guid>
		<description><![CDATA[Following are some Java Web development interview questions:

   1. Can we use the constructor, instead of init(), to initialize servlet? - Yes , of course you can use the constructor instead of init(). There’s nothing to stop you. But you shouldn’t. The original reason for init() was that ancient versions of Java couldn’t [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/java-web-development-interview-questions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java/J2EE Interview Questions</title>
		<link>http://www.freshershome.com/interview-questions/java/javaj2ee-interview-questions/</link>
		<comments>http://www.freshershome.com/interview-questions/java/javaj2ee-interview-questions/#comments</comments>
		<pubDate>Sat, 21 Jul 2007 06:36:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://www.freshershome.com/interview-questions/?p=29</guid>
		<description><![CDATA[The Following are  Java/J2EE Interview Questions

   1. What is Jakarta Struts Framework? - Jakarta Struts is open source implementation of MVC (Model-View-Controller) pattern for the development of web based applications. Jakarta Struts is robust architecture and can be used for the development of application of any size. Struts framework makes it much [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/javaj2ee-interview-questions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Interview questions on EJB</title>
		<link>http://www.freshershome.com/interview-questions/java/interview-questions-on-ejb/</link>
		<comments>http://www.freshershome.com/interview-questions/java/interview-questions-on-ejb/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 14:21:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://freshershome.com/interview-questions/?p=12</guid>
		<description><![CDATA[   1. How EJB Invocation happens? - Retrieve Home Object reference from Naming Service via JNDI. Return Home Object reference to the client. Create me a new EJB Object through Home Object interface. Create EJB Object from the Ejb Object. Return EJB Object reference to the client. Invoke business method using EJB Object [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/interview-questions-on-ejb/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Huge List of Java Interview Questions</title>
		<link>http://www.freshershome.com/interview-questions/java/huge-list-of-java-interview-questions/</link>
		<comments>http://www.freshershome.com/interview-questions/java/huge-list-of-java-interview-questions/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 14:18:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://freshershome.com/interview-questions/?p=11</guid>
		<description><![CDATA[
What is the difference between procedural and object-oriented programs?- a) In procedural program, programming logic follows certain procedures and the instructions are executed one after another. In OOP program, unit of program is object, which is nothing but combination of data and code. b) In procedural program, data is exposed to the whole program whereas [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/huge-list-of-java-interview-questions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java questions for Newbies</title>
		<link>http://www.freshershome.com/interview-questions/java/java-questions-for-newbies/</link>
		<comments>http://www.freshershome.com/interview-questions/java/java-questions-for-newbies/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 14:15:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://freshershome.com/interview-questions/?p=10</guid>
		<description><![CDATA[   1. If Runnable interface is better than Thread class, than why we are using Thread class? What is the need for Thread class?
   2. Why we are calling System.gc() method to garbage collection of unused object, if garbage collection is automatically done in Java by daemon thread in background process [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/java-questions-for-newbies/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java Interview questions</title>
		<link>http://www.freshershome.com/interview-questions/java/java-interview-questions/</link>
		<comments>http://www.freshershome.com/interview-questions/java/java-interview-questions/#comments</comments>
		<pubDate>Thu, 19 Jul 2007 14:14:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://freshershome.com/interview-questions/?p=9</guid>
		<description><![CDATA[   1. How could Java classes direct program messages to the system console, but error messages, say to a file?
         The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they [...]]]></description>
		<wfw:commentRss>http://www.freshershome.com/interview-questions/java/java-interview-questions/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
