﻿<?phpxml 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/"
>
<channel>
<title>Common Interview Questions / devin2 / All</title>
<link>http://commoninterview.com</link>
<description>The source for Job Interview Questions and Job Search Networking</description>
<pubDate>Sat, 22 May 2010 23:18:25 -0600</pubDate>
<language>en</language>
<item>
<title><![CDATA[Write a function to check if the number is even ]]></title>
<link>http://commoninterview.com/Programming_Interview_Questions/write-a-function-to-check-if-the-number-is-even-/</link>
<comments>http://commoninterview.com/Programming_Interview_Questions/write-a-function-to-check-if-the-number-is-even-/</comments>
<pubDate>Sat, 22 May 2010 23:18:25 -0600</pubDate>
<dc:creator>devin2</dc:creator>
<category>Programming Interview Questions</category>
<guid>http://commoninterview.com/Programming_Interview_Questions/write-a-function-to-check-if-the-number-is-even-/</guid>
<description><![CDATA[Write a function bool isEven(int Number)  which would check if input number is even or odd.<br /><br /><b> Solution:</b><br /><br />The key to this question is to understand that first bit in all odd number would be always set to 1. <br /><br />2<sup>0</sup>2<sup>1</sup>2<sup>2</sup>2<sup>3</sup>2<sup>4</sup>... <br /><br />So, the solution is quite simple: <br /><br /><code><br />bool isEven(int Number)<br />{<br />return (Number &amp; 1) == 0;<br />}<br /><br /></code><br/><br/>1 Vote(s) ]]></description>
</item>

<item>
<title><![CDATA[General and Basic Technical Questions (Microsoft screening)]]></title>
<link>http://commoninterview.com/Testing_Interview_Questions/general-and-basic-technical-questions-microsoft-screening/</link>
<comments>http://commoninterview.com/Testing_Interview_Questions/general-and-basic-technical-questions-microsoft-screening/</comments>
<pubDate>Sat, 27 Mar 2010 21:29:11 -0600</pubDate>
<dc:creator>devin2</dc:creator>
<category>Testing and QA Interview Questions</category>
<guid>http://commoninterview.com/Testing_Interview_Questions/general-and-basic-technical-questions-microsoft-screening/</guid>
<description><![CDATA[Here are the screening interview questions I recieved from Microsoft recruiter. She sent me MS Word doc template and asked to fill it in. Didn't find any clause asking to keep it confidential, so here it is:<br /><br />Why are you considering looking at new opportunities?<br /><br />What would be your ideal job?<br /><br />What is your area of technical expertise?<br /><br />Break down your typical day. (code/design/test/other)<br /><br />What is your strongest programming language?<br /><br />Describe your experience with C++, C# and XML?<br /><br />Tell me about a time where you did something that was difficult from a technical perspective and it solved a problem.<br /><br />What do you like about testing?<br /><br />What types of testing have you done?<br /><br />Have you written test automation? If so, what did you use to write the automation?<br /><br />What is your experience with multi-threading?<br /><br/><br/>2 Vote(s) ]]></description>
</item>

</channel>
</rss>

