<?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 on: Microsoft SDE Test Interview</title>
	<atom:link href="http://elliottback.com/wp/microsoft-sde-test-interview/feed/" rel="self" type="application/rss+xml" />
	<link>http://elliottback.com/wp/microsoft-sde-test-interview/</link>
	<description>Internet &#38; Technology</description>
	<lastBuildDate>Sun, 22 Nov 2009 02:40:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fedra</title>
		<link>http://elliottback.com/wp/microsoft-sde-test-interview/#comment-2039386</link>
		<dc:creator>Fedra</dc:creator>
		<pubDate>Tue, 02 Sep 2008 21:55:27 +0000</pubDate>
		<guid isPermaLink="false">http://elliottback.com/wp/?p=1021#comment-2039386</guid>
		<description>Hello Elliot

Sounds like you had a pretty good interview......  I am looking for a strong SDET. Are you or anyone you know might be interested please let me know.  

We are a technology company here in Downtown Seattle,  let me know if you or anyone you may know is interested. My email is fybraun@gmail.com</description>
		<content:encoded><![CDATA[<p>Hello Elliot</p>
<p>Sounds like you had a pretty good interview&#8230;&#8230;  I am looking for a strong SDET. Are you or anyone you know might be interested please let me know.  </p>
<p>We are a technology company here in Downtown Seattle,  let me know if you or anyone you may know is interested. My email is <a href="mailto:fybraun@gmail.com">fybraun@gmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: viswa</title>
		<link>http://elliottback.com/wp/microsoft-sde-test-interview/#comment-464424</link>
		<dc:creator>viswa</dc:creator>
		<pubDate>Wed, 28 Feb 2007 20:07:24 +0000</pubDate>
		<guid isPermaLink="false">http://elliottback.com/wp/?p=1021#comment-464424</guid>
		<description>hey gravatar..

all the best for the outcome.. u seem confident.. so u wud make it.. did u get ur result? could u pls tell what questions were u asked?</description>
		<content:encoded><![CDATA[<p>hey gravatar..</p>
<p>all the best for the outcome.. u seem confident.. so u wud make it.. did u get ur result? could u pls tell what questions were u asked?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ananomys</title>
		<link>http://elliottback.com/wp/microsoft-sde-test-interview/#comment-444774</link>
		<dc:creator>ananomys</dc:creator>
		<pubDate>Tue, 20 Feb 2007 02:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://elliottback.com/wp/?p=1021#comment-444774</guid>
		<description>Hi , I just came from a Microsoft face to face Interview in Redmond.In the morning Recruiter had told me that I would be meetng with 3 interviewers. 2 for 1 hour each and 3rd one more longer with lunch interview in between .
I think, I have made my best and given most of the answers about testing problems, Link lists and all.I am satisfied with the same. My 3rd interview finish at 1 o&#039;clock .It was followed by Product Team Manager who also took my telephonic interview and he jsut asked my day, my back ground and what do you looking forward to work in Microsoft, I think,I am best in that too and he is satisfied.

Any one any idea or past experience if your interviews goes all well with people impressed and it finishes off by 1:30 PM. what does that mean ?

Is it always that Microsoft has 5-6 rounds of interview till evening or that sometimes, they closes the same early as in my case. 

Any inputs are most welcome.
I am optimistic though :))</description>
		<content:encoded><![CDATA[<p>Hi , I just came from a Microsoft face to face Interview in Redmond.In the morning Recruiter had told me that I would be meetng with 3 interviewers. 2 for 1 hour each and 3rd one more longer with lunch interview in between .<br />
I think, I have made my best and given most of the answers about testing problems, Link lists and all.I am satisfied with the same. My 3rd interview finish at 1 o&#8217;clock .It was followed by Product Team Manager who also took my telephonic interview and he jsut asked my day, my back ground and what do you looking forward to work in Microsoft, I think,I am best in that too and he is satisfied.</p>
<p>Any one any idea or past experience if your interviews goes all well with people impressed and it finishes off by 1:30 PM. what does that mean ?</p>
<p>Is it always that Microsoft has 5-6 rounds of interview till evening or that sometimes, they closes the same early as in my case. </p>
<p>Any inputs are most welcome.<br />
I am optimistic though <img src='http://elliottback.com/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://elliottback.com/wp/microsoft-sde-test-interview/#comment-434409</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 15 Feb 2007 15:30:31 +0000</pubDate>
		<guid isPermaLink="false">http://elliottback.com/wp/?p=1021#comment-434409</guid>
		<description>need more commenting space ... you all get the idea</description>
		<content:encoded><![CDATA[<p>need more commenting space &#8230; you all get the idea</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://elliottback.com/wp/microsoft-sde-test-interview/#comment-434405</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Thu, 15 Feb 2007 15:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://elliottback.com/wp/?p=1021#comment-434405</guid>
		<description>My programming question was to find the fibinacci number given an index.

recursive:
public int doFib(int a) {

if( a == 0) {
return 0;
}elseif ( a==1) {
return 1;
}
else {
return doFib( a-1) + doFib( a-2);
}
}

although recursive is the most common and easily understood, i think it is better to do it with loops,

int doFib( int a) {

//base case
double zero = 0;
double one = 1;

double result = zero;
for( int i = 0; i &lt;a&gt;</description>
		<content:encoded><![CDATA[<p>My programming question was to find the fibinacci number given an index.</p>
<p>recursive:<br />
public int doFib(int a) {</p>
<p>if( a == 0) {<br />
return 0;<br />
}elseif ( a==1) {<br />
return 1;<br />
}<br />
else {<br />
return doFib( a-1) + doFib( a-2);<br />
}<br />
}</p>
<p>although recursive is the most common and easily understood, i think it is better to do it with loops,</p>
<p>int doFib( int a) {</p>
<p>//base case<br />
double zero = 0;<br />
double one = 1;</p>
<p>double result = zero;<br />
for( int i = 0; i &lt;a&gt;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
