<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments for Tech Interviews</title>
	<atom:link href="http://www.techinterviews.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.techinterviews.com</link>
	<description>Prepare for job interviews with the questions and answers asked by high-tech employers</description>
	<pubDate>Wed, 04 Nov 2009 01:49:17 +0000</pubDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Windows sysadmin interview questions by Hariom Jindal</title>
		<link>http://www.techinterviews.com/windows-sysadmin-interview-questions/comment-page-2#comment-178618</link>
		<dc:creator>Hariom Jindal</dc:creator>
		<pubDate>Mon, 30 Mar 2009 11:21:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.techinterviews.com/?p=273#comment-178618</guid>
		<description>Que.: Which is the deafult protocol used in directory services? 

Ans.: Ldap, is the default protocol for Active Directory and Port no is 389.</description>
		<content:encoded><![CDATA[<p>Que.: Which is the deafult protocol used in directory services? </p>
<p>Ans.: Ldap, is the default protocol for Active Directory and Port no is 389.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows sysadmin interview questions by Hariom Jindal</title>
		<link>http://www.techinterviews.com/windows-sysadmin-interview-questions/comment-page-2#comment-178617</link>
		<dc:creator>Hariom Jindal</dc:creator>
		<pubDate>Mon, 30 Mar 2009 11:16:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.techinterviews.com/?p=273#comment-178617</guid>
		<description>Que.: What is Active Directory schema? 

Ans.: Active Directory schema- User Attributes, Classes &#38; Network Resources called AD Schema.</description>
		<content:encoded><![CDATA[<p>Que.: What is Active Directory schema? </p>
<p>Ans.: Active Directory schema- User Attributes, Classes &amp; Network Resources called AD Schema.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows sysadmin interview questions by Hariom Jindal</title>
		<link>http://www.techinterviews.com/windows-sysadmin-interview-questions/comment-page-2#comment-178616</link>
		<dc:creator>Hariom Jindal</dc:creator>
		<pubDate>Mon, 30 Mar 2009 11:12:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.techinterviews.com/?p=273#comment-178616</guid>
		<description>Que..: What is global catalog server? 

A server hold the full information about the local domain and partial information about trusted domain called Global Catlog. In a Domain Network first DC hold this role by default.</description>
		<content:encoded><![CDATA[<p>Que..: What is global catalog server? </p>
<p>A server hold the full information about the local domain and partial information about trusted domain called Global Catlog. In a Domain Network first DC hold this role by default.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on C and C++ questions for the interview by Vinod</title>
		<link>http://www.techinterviews.com/c-and-c-questions-for-the-interview/comment-page-3#comment-177504</link>
		<dc:creator>Vinod</dc:creator>
		<pubDate>Sat, 07 Feb 2009 16:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.techinterviews.com/?p=238#comment-177504</guid>
		<description>*********************************************
//snippet1
int main(){
	printf("%d");
	return 0;
}
//result = 1314976(garbage)
*********************************************
//snippet2
int one(){
	printf("%d");
	return 0;
}
int main(){
	one();
}
// result = 16384
*********************************************
//snippet3
int one(){
	printf("%d");
	return 0;
}
int main(){
	printf("%d");
	one();
}
// result = -1
*********************************************
//snippet 4
int two(){
	int x=10;
	printf("%d");
	return 0;
}
int main(){
	two();
	return 0;
}
// result = 10
*******************************************
I feel, the result is unpredictable as in the above 
snippets, different situations different output 
but same code( printf("%d"); )
The code deals with stack, that we all know.. but wat
does the stack contain???</description>
		<content:encoded><![CDATA[<p>*********************************************<br />
//snippet1<br />
int main(){<br />
	printf(&#8221;%d&#8221;);<br />
	return 0;<br />
}<br />
//result = 1314976(garbage)<br />
*********************************************<br />
//snippet2<br />
int one(){<br />
	printf(&#8221;%d&#8221;);<br />
	return 0;<br />
}<br />
int main(){<br />
	one();<br />
}<br />
// result = 16384<br />
*********************************************<br />
//snippet3<br />
int one(){<br />
	printf(&#8221;%d&#8221;);<br />
	return 0;<br />
}<br />
int main(){<br />
	printf(&#8221;%d&#8221;);<br />
	one();<br />
}<br />
// result = -1<br />
*********************************************<br />
//snippet 4<br />
int two(){<br />
	int x=10;<br />
	printf(&#8221;%d&#8221;);<br />
	return 0;<br />
}<br />
int main(){<br />
	two();<br />
	return 0;<br />
}<br />
// result = 10<br />
*******************************************<br />
I feel, the result is unpredictable as in the above<br />
snippets, different situations different output<br />
but same code( printf(&#8221;%d&#8221;); )<br />
The code deals with stack, that we all know.. but wat<br />
does the stack contain???</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 8085 microprocessor questions by Arun.V</title>
		<link>http://www.techinterviews.com/8085-micr0processor-questions/comment-page-3#comment-177503</link>
		<dc:creator>Arun.V</dc:creator>
		<pubDate>Sat, 07 Feb 2009 16:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.techinterviews.com/?p=168#comment-177503</guid>
		<description>The arithematic operations that do not affect  
flags are INX and DCX. The logic operation that do not affect flag is compliment(CMA). 
8085 has 6500 transistors.8085 architecture follows Von Neumann architecture.RST7.5 is edge triggered and RST5.5,RST6.5 are level triggered.</description>
		<content:encoded><![CDATA[<p>The arithematic operations that do not affect<br />
flags are INX and DCX. The logic operation that do not affect flag is compliment(CMA).<br />
8085 has 6500 transistors.8085 architecture follows Von Neumann architecture.RST7.5 is edge triggered and RST5.5,RST6.5 are level triggered.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
