<?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>Interview Tips &#187; code</title>
	<atom:link href="http://tipsinterview.com/tag/code/feed/" rel="self" type="application/rss+xml" />
	<link>http://tipsinterview.com</link>
	<description>Interview Tips, Interview Questions and Answers</description>
	<lastBuildDate>Sun, 25 Jul 2010 00:30:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>.NET interview: What is the difference between a Thread and Process?</title>
		<link>http://tipsinterview.com/2010/05/20/net-interview-what-is-the-difference-between-a-thread-and-process/</link>
		<comments>http://tipsinterview.com/2010/05/20/net-interview-what-is-the-difference-between-a-thread-and-process/#comments</comments>
		<pubDate>Thu, 20 May 2010 00:28:32 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[execution]]></category>
		<category><![CDATA[global variables]]></category>
		<category><![CDATA[memory space]]></category>
		<category><![CDATA[multiple threads]]></category>
		<category><![CDATA[Process]]></category>
		<category><![CDATA[single thread]]></category>
		<category><![CDATA[thread]]></category>
		<category><![CDATA[virtual memory]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=287</guid>
		<description><![CDATA[A process is a collection of virtual memory space, code, data, and system resources. A thread is code that is to be serially executed within a process. A processor executes threads, not processes, so each application has at least one process, and a process always has at least one thread of execution, known as the [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/05/20/net-interview-what-is-the-difference-between-a-thread-and-process/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C# interview questions and answers</title>
		<link>http://tipsinterview.com/2010/03/13/c-interview-questions-and-answers-3/</link>
		<comments>http://tipsinterview.com/2010/03/13/c-interview-questions-and-answers-3/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 00:36:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Array]]></category>
		<category><![CDATA[assembly]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[dll hell]]></category>
		<category><![CDATA[Exception]]></category>
		<category><![CDATA[function pointers]]></category>
		<category><![CDATA[msi installer]]></category>
		<category><![CDATA[multilingual application]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[xcopy command]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/03/13/c-interview-questions-and-answers-3/</guid>
		<description><![CDATA[1. What’s the advantage of using System.Text.StringBuilder over System.String? StringBuilder is more efficient in cases where a large amount of manipulation is done in the text. Strings are immutable, so it is increasingly being operated, a new instance is created. 2. Can you store multiple data types in System.Array? No. 3. What’s the difference between [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/03/13/c-interview-questions-and-answers-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interview questions for C# developers</title>
		<link>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/</link>
		<comments>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 01:03:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[c method]]></category>
		<category><![CDATA[C.MessageBoxA]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[indexers]]></category>
		<category><![CDATA[int]]></category>
		<category><![CDATA[native dll]]></category>
		<category><![CDATA[optional parameters]]></category>
		<category><![CDATA[return]]></category>
		<category><![CDATA[try]]></category>
		<category><![CDATA[user32 dll]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/</guid>
		<description><![CDATA[If I return out of a try/finally in C#, does the code in the finally-clause run? - Yes. The code in the finally always runs. If you return out of the try block, or even if you do a “goto” out of the try, the finally block always runs: Both “In Try block” and “In [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/02/24/interview-questions-for-c-developers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Features and Advantages</title>
		<link>http://tipsinterview.com/2010/01/12/asp-net-features-and-advantages/</link>
		<comments>http://tipsinterview.com/2010/01/12/asp-net-features-and-advantages/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 04:22:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Asp.Net]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[authentication schemes]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[compatible language]]></category>
		<category><![CDATA[dot net framework]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[memory leaks]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xml web services]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/01/12/asp-net-features-and-advantages/</guid>
		<description><![CDATA[ASP.NET is a compiled, .NET-based environment; you can code the applications in any .NET compatible language, including Visual Basic .NET, C#, and JScript .NET. Additionally, the entire .NET Framework is available to any ASP.NET application. ASP.NET has been designed with scalability in mind, with features specifically tailored to improve performance in clustered and multiprocessor environments. [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/01/12/asp-net-features-and-advantages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thank You Letter for Job Interview</title>
		<link>http://tipsinterview.com/2010/01/08/thank-you-letter-for-job-interview/</link>
		<comments>http://tipsinterview.com/2010/01/08/thank-you-letter-for-job-interview/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 00:23:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Interview Skills]]></category>
		<category><![CDATA[Interview Tips]]></category>
		<category><![CDATA[Address City]]></category>
		<category><![CDATA[address city state]]></category>
		<category><![CDATA[artistic background]]></category>
		<category><![CDATA[assistant account executive]]></category>
		<category><![CDATA[City]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[detail orientation]]></category>
		<category><![CDATA[Ms. Last]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[State]]></category>
		<category><![CDATA[state zip code]]></category>
		<category><![CDATA[Thank you letter]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/2010/01/08/thank-you-letter-for-job-interview/</guid>
		<description><![CDATA[Your Name Your Address Your City, State, Zip Code Your Phone Number Your Email Date Name Title Organization Address City, State, Zip Code Dear Mr./Ms. Last Name: It was very enjoyable to speak with you about the assistant account executive position at the Smith Agency. The job, as you presented it, seems to be a [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2010/01/08/thank-you-letter-for-job-interview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 19 Basic .NET and ASP.NET interview questions</title>
		<link>http://tipsinterview.com/2009/12/18/top-19-basic-net-and-asp-net-interview-questions/</link>
		<comments>http://tipsinterview.com/2009/12/18/top-19-basic-net-and-asp-net-interview-questions/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 10:49:31 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[ASP]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[intermediate language]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[memory database]]></category>
		<category><![CDATA[msil]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[server side validation]]></category>
		<category><![CDATA[side]]></category>
		<category><![CDATA[smart navigation]]></category>

		<guid isPermaLink="false">http://tipsinterview.com/?p=3</guid>
		<description><![CDATA[How many languages .NET is supporting now? - When .NET was introduced it came with several languages. VB.NET, C#, COBOL and Perl, etc. The site DotNetLanguages.Net says 44 languages are supported. How is .NET able to support multiple languages? - a language should comply with the Common Language Runtime standard to become a .NET language. [...]]]></description>
		<wfw:commentRss>http://tipsinterview.com/2009/12/18/top-19-basic-net-and-asp-net-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
