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

<channel>
	<title>Interview Questions</title>
	<atom:link href="http://www.hotwalkins.com/interview/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hotwalkins.com/interview</link>
	<description>Technical Interview Questions &#124; IT Interview Questions &#124; Software Inteview Questions &#124; hotWalkins</description>
	<pubDate>Sat, 13 Mar 2010 04:23:58 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What are the major benefits of reporting with BW over R/3?</title>
		<link>http://www.hotwalkins.com/interview/erp-crm/what-are-the-major-benefits-of-reporting-with-bw-over-r3/</link>
		<comments>http://www.hotwalkins.com/interview/erp-crm/what-are-the-major-benefits-of-reporting-with-bw-over-r3/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 04:23:58 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[ERP/CRM]]></category>

		<category><![CDATA[SAP Questions]]></category>

		<category><![CDATA[ERP Interview Questions]]></category>

		<category><![CDATA[ERP Questions]]></category>

		<category><![CDATA[Interview Questions on ERP]]></category>

		<category><![CDATA[Interview Questions on SAP]]></category>

		<category><![CDATA[SAP Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=583</guid>
		<description><![CDATA[Would it be sufficient just to Web-enable R/3 Reports? (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/erp-crm/what-are-the-major-benefits-of-reporting-with-bw-over-r3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is an EJB Context?</title>
		<link>http://www.hotwalkins.com/interview/java/what-is-an-ejb-context/</link>
		<comments>http://www.hotwalkins.com/interview/java/what-is-an-ejb-context/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 14:00:32 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[J2EE Questions]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Interview Questions on J2EE]]></category>

		<category><![CDATA[Interview Questions on Java]]></category>

		<category><![CDATA[J2EE Interview Questions]]></category>

		<category><![CDATA[Java Interview Questions]]></category>

		<category><![CDATA[Java Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=403</guid>
		<description><![CDATA[- EJBContext is an interface that is implemented by the container, and it is also a part of the bean-container contract. Entity beans use a subclass of EJBContext called EntityContext. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/java/what-is-an-ejb-context/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to initialize a SCSI Disk Drive in VxWorks?</title>
		<link>http://www.hotwalkins.com/interview/embedded/how-to-initialize-a-scsi-disk-drive-in-vxworks/</link>
		<comments>http://www.hotwalkins.com/interview/embedded/how-to-initialize-a-scsi-disk-drive-in-vxworks/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 00:21:09 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Embedded]]></category>

		<category><![CDATA[VxWorks Questions]]></category>

		<category><![CDATA[Embedded System Interview Questions]]></category>

		<category><![CDATA[Embedded System Questions]]></category>

		<category><![CDATA[Interview Questions on Embedded System]]></category>

		<category><![CDATA[Interview Questions on VxWorks]]></category>

		<category><![CDATA[VxWorks Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=817</guid>
		<description><![CDATA[This example initializes a SCSI disk as a single file system volume (and assumes that the disk is already formatted). (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/embedded/how-to-initialize-a-scsi-disk-drive-in-vxworks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Compare time?</title>
		<link>http://www.hotwalkins.com/interview/microsoft/how-to-compare-time/</link>
		<comments>http://www.hotwalkins.com/interview/microsoft/how-to-compare-time/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 11:13:38 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[ASP.NET Questions]]></category>

		<category><![CDATA[Microsoft Tech]]></category>

		<category><![CDATA[ASP.NET Interview Questions]]></category>

		<category><![CDATA[Interview Questions on ASP.NET]]></category>

		<category><![CDATA[Interview Questions on Microsoft Technologies]]></category>

		<category><![CDATA[Microsoft Technologies Interview Questions]]></category>

		<category><![CDATA[Microsoft Technologies Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=208</guid>
		<description><![CDATA[VB.NET
 
Dim t1 As String = DateTime.Parse(&#8221;3:30 PM&#8221;).ToString(&#8221;t&#8221;)
Dim t2 As String = DateTime.Now.ToString(&#8221;t&#8221;)
If DateTime.Compare(DateTime.Parse(t1), DateTime.Parse(t2)) &#60; 0 Then
     Response.Write(t1.ToString() &#38; &#8221; is &#60; than &#8221; &#38; t2.ToString())
 
Else
     Response.Write(t1.ToString() &#38; &#8221; is &#62; than &#8221; &#38; t2.ToString())
 
End If
 
C#
 
string t1 = DateTime.Parse(&#8221;3:30 PM&#8221;).ToString(&#8221;t&#8221;);
string t2 = DateTime.Now.ToString(&#8221;t&#8221;);
if (DateTime.Compare(DateTime.Parse (t1), DateTime.Parse (t2)) &#60; 0 )
{
     Response.Write(t1.ToString() + &#8221; is &#60; than &#8221; + t2.ToString());
}
 
else
{
     Response.Write(t1.ToString() + &#8221; is &#62; than &#8221; + t2.ToString());
}]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/microsoft/how-to-compare-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What makes a good test engineer?</title>
		<link>http://www.hotwalkins.com/interview/testing/what-makes-a-good-test-engineer/</link>
		<comments>http://www.hotwalkins.com/interview/testing/what-makes-a-good-test-engineer/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:08:12 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Automation Testing Questions]]></category>

		<category><![CDATA[Manual Testing Questions]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[Automation Testing Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Automation Testing]]></category>

		<category><![CDATA[Interview Questions on Testing]]></category>

		<category><![CDATA[Testing Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=179</guid>
		<description><![CDATA[·         A good test engineer has a ˜test to break attitude, an ability to take the point of view of the customer, a strong desire for quality, and an attention to detail. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/testing/what-makes-a-good-test-engineer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>write a program to find out transpose of a matrix in C</title>
		<link>http://www.hotwalkins.com/interview/embedded/write-a-program-to-find-out-transpose-of-a-matrix-in-c/</link>
		<comments>http://www.hotwalkins.com/interview/embedded/write-a-program-to-find-out-transpose-of-a-matrix-in-c/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 08:54:18 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[C/C++ Questions]]></category>

		<category><![CDATA[Embedded]]></category>

		<category><![CDATA[C++ Interview Questions]]></category>

		<category><![CDATA[C++ Questions]]></category>

		<category><![CDATA[Embedded System Interview Questions]]></category>

		<category><![CDATA[Embedded System Questions]]></category>

		<category><![CDATA[Interview Questions on C++]]></category>

		<category><![CDATA[Interview Questions on Embedded System]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=801</guid>
		<description><![CDATA[void main()
{
int a[10][10],b[10][10],i,j,k=0,m,n;
clrscr();
printf(&#8221;\nEnter the row and column of matrix&#8221;);
scanf(&#8221;%d %d&#8221;,&#38;m,&#38;n);
printf(&#8221;\nEnter the First matrix-&#62;&#8221;);
for(i=0;i &#8220;);
for(i=0;i
 {
   printf(&#8221;\n&#8221;);
   for(j=0;j
   {
     printf(&#8221;%d\t&#8221;,b[i][j]);
   }
 }
getch();
}]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/embedded/write-a-program-to-find-out-transpose-of-a-matrix-in-c/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What are Aggregate tables?</title>
		<link>http://www.hotwalkins.com/interview/database/what-are-aggregate-tables/</link>
		<comments>http://www.hotwalkins.com/interview/database/what-are-aggregate-tables/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 18:01:52 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Datawarehousing Questions]]></category>

		<category><![CDATA[Database Interview Questions]]></category>

		<category><![CDATA[Datawarehousing Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Database]]></category>

		<category><![CDATA[Interview Questions on Datawarehousing]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=22</guid>
		<description><![CDATA[Aggregate table contains the Summary of existing warehouse data which is grouped to certain levels of dimensions. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/database/what-are-aggregate-tables/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What operations are allowed on an array ?</title>
		<link>http://www.hotwalkins.com/interview/embedded/what-operations-are-allowed-on-an-array/</link>
		<comments>http://www.hotwalkins.com/interview/embedded/what-operations-are-allowed-on-an-array/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:37:09 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[C/C++ Questions]]></category>

		<category><![CDATA[Embedded]]></category>

		<category><![CDATA[C++ Interview Questions]]></category>

		<category><![CDATA[C++ Questions]]></category>

		<category><![CDATA[Embedded System Interview Questions]]></category>

		<category><![CDATA[Embedded System Questions]]></category>

		<category><![CDATA[Interview Questions on C++]]></category>

		<category><![CDATA[Interview Questions on Embedded System]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=843</guid>
		<description><![CDATA[Please find the following points:
&#62; Comparison of a string with pointer or base address is not allowed in C. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/embedded/what-operations-are-allowed-on-an-array/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is RMI Profile ?</title>
		<link>http://www.hotwalkins.com/interview/java/what-is-rmi-profile/</link>
		<comments>http://www.hotwalkins.com/interview/java/what-is-rmi-profile/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:37:09 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[J2ME Questions]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Interview Questions on J2ME]]></category>

		<category><![CDATA[Interview Questions on Java]]></category>

		<category><![CDATA[J2ME Interview Questions]]></category>

		<category><![CDATA[Java Interview Questions]]></category>

		<category><![CDATA[Java Questions]]></category>

		<guid isPermaLink="false">http://hotwalkins.com/questions/?p=529</guid>
		<description><![CDATA[The RMI Profile is a J2ME profile specification designed to support Java&#8217;s Remote Method Invocation (RMI) distributed object system. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/java/what-is-rmi-profile/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Why do we have a remove method in both EJBHome and EJBObject?</title>
		<link>http://www.hotwalkins.com/interview/java/why-do-we-have-a-remove-method-in-both-ejbhome-and-ejbobject/</link>
		<comments>http://www.hotwalkins.com/interview/java/why-do-we-have-a-remove-method-in-both-ejbhome-and-ejbobject/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:37:09 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[J2EE Questions]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Interview Questions on J2EE]]></category>

		<category><![CDATA[Interview Questions on Java]]></category>

		<category><![CDATA[J2EE Interview Questions]]></category>

		<category><![CDATA[Java Interview Questions]]></category>

		<category><![CDATA[Java Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=398</guid>
		<description><![CDATA[- With the EJBHome version of the remove, you are able to delete an entity bean without first instantiating it (you can provide a PrimaryKey object as a parameter to the remove method). (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/java/why-do-we-have-a-remove-method-in-both-ejbhome-and-ejbobject/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do you create a test strategy?</title>
		<link>http://www.hotwalkins.com/interview/testing/how-do-you-create-a-test-strategy/</link>
		<comments>http://www.hotwalkins.com/interview/testing/how-do-you-create-a-test-strategy/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 05:37:09 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Automation Testing Questions]]></category>

		<category><![CDATA[Manual Testing Questions]]></category>

		<category><![CDATA[Software Testing Questions]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[Automation Testing Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Automation Testing]]></category>

		<category><![CDATA[Interview Questions on Manual Testing]]></category>

		<category><![CDATA[Interview Questions on Software Testing]]></category>

		<category><![CDATA[Interview Questions on Testing]]></category>

		<category><![CDATA[Manual Testing Interview Questions]]></category>

		<category><![CDATA[Software Testing Interview Questions]]></category>

		<category><![CDATA[Testing Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=257</guid>
		<description><![CDATA[The test strategy is a formal description of how a software product will be tested. A test strategy is developed for all levels of testing, as required. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/testing/how-do-you-create-a-test-strategy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What you need concentrate after getting explain plan?</title>
		<link>http://www.hotwalkins.com/interview/database/what-you-need-concentrate-after-getting-explain-plan/</link>
		<comments>http://www.hotwalkins.com/interview/database/what-you-need-concentrate-after-getting-explain-plan/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 13:50:42 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Informatica Questions]]></category>

		<category><![CDATA[Database Interview Questions]]></category>

		<category><![CDATA[Informatica Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Database]]></category>

		<category><![CDATA[Interview Questions on Informatica]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=58</guid>
		<description><![CDATA[The 3 most significant columns in the plan table are named OPERATION,OPTIONS, and OBJECT_NAME.For each step,
these tell u which operation is going to be performed and which object is the target of that operation. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/database/what-you-need-concentrate-after-getting-explain-plan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is Servlet Run-time Environment ?</title>
		<link>http://www.hotwalkins.com/interview/java/what-is-servlet-run-time-environment/</link>
		<comments>http://www.hotwalkins.com/interview/java/what-is-servlet-run-time-environment/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 20:07:14 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[Servlet Questions]]></category>

		<category><![CDATA[Interview Questions on Java]]></category>

		<category><![CDATA[Interview Questions on Servlet]]></category>

		<category><![CDATA[Java Interview Questions]]></category>

		<category><![CDATA[Java Questions]]></category>

		<category><![CDATA[Servlet Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=858</guid>
		<description><![CDATA[A servlet is a Java class and therefore needs to be executed in a Java VM by a service we call a servlet engine. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/java/what-is-servlet-run-time-environment/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How do I use Python for CGI ?</title>
		<link>http://www.hotwalkins.com/interview/scripting/how-do-i-use-python-for-cgi/</link>
		<comments>http://www.hotwalkins.com/interview/scripting/how-do-i-use-python-for-cgi/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 07:55:01 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Python Questions]]></category>

		<category><![CDATA[Scripting]]></category>

		<category><![CDATA[Interview Questions on Python]]></category>

		<category><![CDATA[Interview Questions on Scripting]]></category>

		<category><![CDATA[Python Interview Questions]]></category>

		<category><![CDATA[Scripting Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=771</guid>
		<description><![CDATA[On the Microsoft IIS server or on the Win95 MS Personal Web Server you set up Python in the same way that you would set up any other scripting engine. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/scripting/how-do-i-use-python-for-cgi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is the difference between static and dynamic RAM?</title>
		<link>http://www.hotwalkins.com/interview/tech-support/what-is-the-difference-between-static-and-dynamic-ram/</link>
		<comments>http://www.hotwalkins.com/interview/tech-support/what-is-the-difference-between-static-and-dynamic-ram/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 19:03:29 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Hardware Questions]]></category>

		<category><![CDATA[Tech Support]]></category>

		<category><![CDATA[Hardware Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Hardware]]></category>

		<category><![CDATA[Interview Questions on Technical Support]]></category>

		<category><![CDATA[Technical Support Interview Questions]]></category>

		<category><![CDATA[Technical Support Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=417</guid>
		<description><![CDATA[Static RAM: No refreshing, 6 to 8 MOS transistors are required to form one memory cell, Information stored as voltage level in a flip flop. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/tech-support/what-is-the-difference-between-static-and-dynamic-ram/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What for is the transformations are used?</title>
		<link>http://www.hotwalkins.com/interview/database/what-for-is-the-transformations-are-used/</link>
		<comments>http://www.hotwalkins.com/interview/database/what-for-is-the-transformations-are-used/#comments</comments>
		<pubDate>Sat, 06 Mar 2010 05:58:41 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Datawarehousing Questions]]></category>

		<category><![CDATA[Database Interview Questions]]></category>

		<category><![CDATA[Datawarehousing Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Database]]></category>

		<category><![CDATA[Interview Questions on Datawarehousing]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=37</guid>
		<description><![CDATA[Transformations are the manipulation of data from how it appears in the source system(s) into another form in the data warehouse or mart in a way that enhances or simplifies its meaning. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/database/what-for-is-the-transformations-are-used/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fact Table - Grain Facts. What are Grain Facts?</title>
		<link>http://www.hotwalkins.com/interview/database/fact-table-grain-facts-what-are-grain-facts/</link>
		<comments>http://www.hotwalkins.com/interview/database/fact-table-grain-facts-what-are-grain-facts/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 16:12:36 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Database]]></category>

		<category><![CDATA[Informatica Questions]]></category>

		<category><![CDATA[Database Interview Questions]]></category>

		<category><![CDATA[Informatica Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Database]]></category>

		<category><![CDATA[Interview Questions on Informatica]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=308</guid>
		<description><![CDATA[Facts are tables that refer to the dimension tables for details. Facts always hold the foreign keys. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/database/fact-table-grain-facts-what-are-grain-facts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is a Bottleneck in Load Testing?</title>
		<link>http://www.hotwalkins.com/interview/testing/what-is-a-bottleneck-in-load-testing/</link>
		<comments>http://www.hotwalkins.com/interview/testing/what-is-a-bottleneck-in-load-testing/#comments</comments>
		<pubDate>Fri, 05 Mar 2010 03:04:31 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Automation Testing Questions]]></category>

		<category><![CDATA[Load Runner]]></category>

		<category><![CDATA[Testing]]></category>

		<category><![CDATA[Automation Testing Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Automation Testing]]></category>

		<category><![CDATA[Interview Questions on Testing]]></category>

		<category><![CDATA[Testing Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=863</guid>
		<description><![CDATA[Any Web system that is subjected to testing will exhibit performance bottlenecks. But what is a bottleneck? (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/testing/what-is-a-bottleneck-in-load-testing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What is GAC?</title>
		<link>http://www.hotwalkins.com/interview/microsoft/what-is-gac/</link>
		<comments>http://www.hotwalkins.com/interview/microsoft/what-is-gac/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 08:49:52 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[ASP.NET Questions]]></category>

		<category><![CDATA[C-Sharp Questions]]></category>

		<category><![CDATA[Microsoft Tech]]></category>

		<category><![CDATA[C-Sharp Interview Questions]]></category>

		<category><![CDATA[Interview Questions on C-Sharp]]></category>

		<category><![CDATA[Interview Questions on Microsoft Technologies]]></category>

		<category><![CDATA[Microsoft Technologies Interview Questions]]></category>

		<category><![CDATA[Microsoft Technologies Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=261</guid>
		<description><![CDATA[The Global Assembly Cache (GAC) stores assemblies specifically designated to be shared by several applications on the computer. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/microsoft/what-is-gac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What do you do to resolve SOC-7 error?</title>
		<link>http://www.hotwalkins.com/interview/mainframe/what-do-you-do-to-resolve-soc-7-error/</link>
		<comments>http://www.hotwalkins.com/interview/mainframe/what-do-you-do-to-resolve-soc-7-error/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 17:21:10 +0000</pubDate>
		<dc:creator>interview-questions</dc:creator>
		
		<category><![CDATA[Cobol Questions]]></category>

		<category><![CDATA[Mainframe]]></category>

		<category><![CDATA[Cobol Interview Questions]]></category>

		<category><![CDATA[Interview Questions on Cobol]]></category>

		<category><![CDATA[Interview Questions on Mainframe]]></category>

		<category><![CDATA[Mainframe Interview Questions]]></category>

		<guid isPermaLink="false">http://questions.hotwalkins.com/?p=342</guid>
		<description><![CDATA[Basically you need to correcting the offending data.
Many times the reason for SOC7 is an un-initialized numeric item. Examine that possibility first. (...)]]></description>
		<wfw:commentRss>http://www.hotwalkins.com/interview/mainframe/what-do-you-do-to-resolve-soc-7-error/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
