active questions tagged interview-questions - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T04:30:58Zhttp://stackoverflow.com/feeds/tag/interview-questionshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845474/concatenate-null-terminated-strings-recursively0Concatenate null-terminated strings recursivelysharptooth2009-12-04T07:50:24Z2009-12-06T10:13:28Z
<p>I'm inventing interview questions that require analysis of C++ code that does something simple with pointers and recursion. I tried to write <code>strcat()</code> in recursive manner:</p>
<pre><code>size_t mystrlen( const char* str )
{
if( *str == 0 ) {
return 0;
}
return 1 + mystrlen( str + 1 );
}
void mystrcpy( char* to, const char* from )
{
if( ( *to = *from ) == 0 ) {
return;
}
mystrcpy( to + 1, from + 1 );
}
void mystrcat( char* to, const char* from )
{
mystrcpy( to + mystrlen( to ), from );
}
</code></pre>
<p>What I don't like here is that I have three functions and my <code>strcat()</code> is not very recursive - it just calls two other functions once. Is there a way to rewrite that somehow to reduce the number of functions increasing use of recursion but without sacrificing much of code brevity?</p>
http://stackoverflow.com/questions/1783815/what-is-a-good-fizzbuzz-question-for-a-sql-programmer5What is a good 'FizzBuzz' question for a SQL programmer?g.2009-11-23T15:24:12Z2009-12-05T06:25:02Z
<p>We are looking to hire a SQL programmer and need a good screening question similar to the <a href="http://imranontech.com/2007/01/24/using-fizzbuzz-to-find-developers-who-grok-coding/" rel="nofollow">FizzBuzz question</a> but for SQL. </p>
<p>While it is certainly possible to write a FizzBuzz solution using SQL, I think the effort is misplaced. The FizzBuzz question assesses coding fundamentals such as looping, conditionals, output, and basic math. With SQL, I think something related to queries, joins, projections, and the like would be more appropriate. But, just as with FizzBuzz, it should be simple enough that 'good' SQL programmers can write a solution on paper in a couple minutes.</p>
<p>What is a good 'FizzBuzz' question for a SQL programmer?</p>
http://stackoverflow.com/questions/1841739/in-jvm-heap-can-there-be-more-than-one-object-with-the-same-hash-code1In JVM heap can there be more than one object with the same hash code?wizard@2009-12-03T18:00:47Z2009-12-04T22:31:41Z
<p>This is a an interview question. </p>
http://stackoverflow.com/questions/32107/practical-programming-test-in-interview11Practical programming test in interviewredspike2008-08-28T12:42:23Z2009-12-04T19:15:25Z
<p>I have been invited to do a second interview for a company recruiting for a software engineer. This interview will consist of a 45 minute programmatic test on a laptop followed by a whiteboard presentation on the solution. This position is Java/J2EE based so I'm assuming (hoping) the test will be implemented using Java.</p>
<p>Have you ever done anything like this? What was the nature of the problem you had to solve? What is a good way to prepare for this type of interview?</p>
http://stackoverflow.com/questions/4783/interview-questions-for-an-intern7Interview Questions for an InternRedWolves2008-08-07T14:39:05Z2009-12-04T17:20:27Z
<p>I have a potential intern coming in tomorrow for his second interview. Following Joel Spolsky's advice from "Smart & Get Things Done" this is where we get a little technical and make sure the kid can do the things he says he can do.</p>
<p>We are a ASP.NET, C# (1.1 - 3.5) shop that uses XHTML/CSS, jQuery, SQL Server 2000/2005 primarily for our web sites.</p>
<p>What are some quality technical questions you would ask or assume would get asked on an interview to gauge if you knew your stuff?</p>
<p><strong>Update:</strong> This is for a SECOND interview the candidate already passed a phone interview where he was asked what sites you read to stay on top etc. The purpose of this interview tomorrow is to see if they really have the knowledge. So I am looking for some questions where they can work through some code on a whiteboard or something.</p>
http://stackoverflow.com/questions/1846930/what-is-the-difference-between-int-i-and-int-i2what is the difference between "int *i" and "int* i"? [closed]siva2009-12-04T13:26:25Z2009-12-04T14:12:02Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/1663071/c-pointer-syntax-style-poll">C Pointer Syntax: Style poll</a><br>
<a href="http://stackoverflow.com/questions/180401/c-asterisks-and-pointers">C++: Asterisks and Pointers</a> </p>
</blockquote>
<p>What is the difference between <code>int *i</code> and <code>int* i</code>?</p>
<p>In one of my software interview, interviewer asked me this question.</p>
<p>Could you please post your comments.</p>
http://stackoverflow.com/questions/1818828/tech-interview-question-is-my-approach-correct3Tech Interview Question-Is my approach correct?bakore2009-11-30T09:50:14Z2009-12-04T10:55:58Z
<p>Recently I was interviewed by a Software Company. I didnt make it through the first round itself.</p>
<p>Maybe I was too slow in forming ideas or solving problems and wasnt good enough for the company that i interviewed for.
I would like to have a second opinion about my interview and I cant find anyone better than the
stackoverflow community.</p>
<p>So this interview was a basic one</p>
<ol>
<li>Introduction</li>
<li>Why you have applied for this position?</li>
<li>One Techincal Question(Details Below)</li>
<li>Whats the Worst software you have used? Why? Improve</li>
<li>Whats the Best Software you have used? why Improve?</li>
</ol>
<p>Original Technical Question(As asked by the interviewer)</p>
<p>Given a Range of numbers M.....M+N-1 I contruct an array of size N and replace one of the element in that array with a number.
How will you find what element is replaced?</p>
<p>I asked him to repeat the question once more as I thought the input was not sufficient to solve the problem.
He repeated the statement ditto</p>
<p>Q. Then I asked him Is the array you got from the range of number in sorted order?<br>
Interviewer: Its not necessary</p>
<p>Q Do we know the array before we replace an Element?<br>
Interviewer: No</p>
<p>Then i started Writing some pseudo code(while doing loud thinking). I immediately realized that It wont work if the original array had duplicates. So I was stuk for a while thinking how the hell am gonna solve this.Then finally I asked questions that mattered</p>
<p>Q How do you choose the elements from the Range to form the array?<br>
Interviewer: I have a range of number M, M+1, M+2....M+N-1. A number is picked only once. And I form an array of size N.(Which essentially means no Duplicates and all elements in the range get picked)</p>
<p>Q What about the number you replace it with? Does it lie in the same range?<br>
Interviewer: Yes it does.</p>
<p>Then everything became clear</p>
<p><strong>This was what he meant:</strong><br>
Q I have a range of numbers starting from M , like M,M+1,M+2,M+3...M+N . I form an array of Size N, such that each element gets picked only once and the original array does not have any duplicates. I replace one of the elements in the array with a number in the same range. Find out what I picked from the range to replace?</p>
<p>This is equivalent to finding duplicates in array. Here after replacement there will be only one pair of duplicates We can easily find that out in O(N^2) time or O(nlogn) time. I gave him both the algorithms.</p>
<p>In the end I couldnt resist asking him "How did I perform in that question? He said Well you took a lot of time in answering.</p>
<p><em>Clearly he was not satisfied with my approach to this question.<br>
<strong>What do you think I should have done differently while answering this question?</em></strong></p>
http://stackoverflow.com/questions/1844381/which-of-the-following-elements-can-be-adjusted-when-using-the-processmodel-eleme0Which of the following elements can be adjusted when using the processmodel element of the machine.config file?HelloBD2009-12-04T01:44:21Z2009-12-04T04:47:34Z
<p><strong>ASP.Net 3.5 using C#</strong></p>
<pre><code>a. The number of queued requests before returning “Server Busy (error:503)”
b. The maximum number of threads per processor
c. The maximum number of threads per request.
d. The maximim amount of memory utilized per request.
</code></pre>
<p>want correct answer of the above question among given answers.I think <strong>b.</strong> will be the answer,but i am not sure.There will be more than one answer.</p>
http://stackoverflow.com/questions/1838688/interview-questions-to-assess-linux-c-programmers0Interview questions to assess Linux C programmersHaiyuan Zhang2009-12-03T09:18:40Z2009-12-04T04:11:29Z
<p>Hi Guys,</p>
<p>I'm not quite a c programmer and I'm not joking that I'll interview a guy with 3 years experience in c under linux . in his cv, he said he is quite experienced with c programming under linux .</p>
<p>so my question is if you are goning to this "c linux" guy, what question or questiones you will ask to make sure that this guy does have high c competence under linux . by the way,
I expected you give me the answer as well :-) .</p>
<p>thanks in advance. </p>
http://stackoverflow.com/questions/309258/c-and-net-interview-questions7C# and .NET Interview Questions [closed]Steve Hayes2008-11-21T16:09:05Z2009-12-03T18:52:14Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/70763/good-c-interview-questions-for-a-senior-dev-position">Good C# Interview Questions for a Senior Dev Position</a> </p>
</blockquote>
<p>What are good interview questions for C# and .NET in general? I have an interview coming up and would like to know what possible questions might be asked.</p>
http://stackoverflow.com/questions/1826159/swapping-two-variable-value-without-using-3rd-variable4Swapping two variable value without using 3rd variableMuhammad Akhtar2009-12-01T13:22:21Z2009-12-03T17:57:34Z
<p>One of the very tricky question asked in an interview...</p>
<p>we need to swap the values of two variables like a=10 and b=15</p>
<p>Generaly to swap two variables values, we need 3rd variable like..</p>
<pre><code>temp=a
a=b
b=temp
</code></pre>
<p>Now the requirement is, swaping value of two variable values without using 3rd variable?</p>
<p>How can be accopmplish this?</p>
http://stackoverflow.com/questions/1841421/which-of-the-statement-are-true-about-the-passport-authentication0which of the statement are true about the passport Authentication?HelloBD2009-12-03T17:12:38Z2009-12-03T17:20:25Z
<p><strong>ASP.Net 3.5 using C#</strong> </p>
<pre><code> a.The passport sdk must be install.
b.Passport authentication is a free service for all sites provided by the microsoft corporation.
c.Passport Authentication provides persistent authentication across sessions.
d.Passport Authentication requires a network path between the client and the microsoft passport server.
</code></pre>
http://stackoverflow.com/questions/1834245/what-question-should-be-asked-to-test-the-interview-candidates-knowledge-of-refe3What question should be asked to test the interview candidate's knowledge of references in C++ ?ajay2009-12-02T16:49:41Z2009-12-03T16:21:04Z
<p>Hi,</p>
<p>If a candidate says that his knowledge in C++ is 7/10 and you want to test his knowledge of references in C++, what question will you ask?</p>
<p>I thought of the following:</p>
<ol>
<li>Write a function declaration that takes a pointer as reference with default values and ask him to figure out a mistake and explain it.</li>
<li>Pass a literal as argument to a function that takes that parameter as reference.</li>
</ol>
<p>Any other question that is better at testing candidates overall knowledge of references in C++?</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi18Code Golf: Leibniz formula for PiGreg Beech2009-01-02T17:42:45Z2009-12-03T14:39:13Z
<p>I recently posted <a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion#406948">one of my favourite interview whiteboard coding questions</a> in "<a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion">What's your more controversial programming opinion</a>", which is to write a function that computes Pi using the <a href="http://en.wikipedia.org/wiki/Leibniz_formula_for_pi" rel="nofollow">Leibniz formula</a>. </p>
<p>It can be approached in a number of different ways, and the exit condition takes a bit of thought, so I thought it might make an interesting code golf question. Shortest code wins!</p>
<blockquote>
<p>Given that Pi can be estimated using the function 4 * (1 - 1/3 + 1/5 - 1/7 + ...) with more terms giving greater accuracy, write a function that calculates Pi to within 0.00001.</p>
</blockquote>
<p><strong>Edit: 3 Jan 2008</strong></p>
<p>As suggested in the comments I changed the exit condition to be within 0.00001 as that's what I really meant (an accuracy 5 decimal places is much harder due to rounding and so I wouldn't want to ask that in an interview, whereas within 0.00001 is an easier to understand and implement exit condition).</p>
<p>Also, to answer the comments, I guess my intention was that the solution should compute the number of iterations, or check when it had done enough, but there's nothing to prevent you from pre-computing the number of iterations and using that number. I really asked the question out of interest to see what people would come up with.</p>
http://stackoverflow.com/questions/472176/any-good-resource-for-java-interview-questions0Any good resource for java interview questions ?Vicky2009-01-23T07:20:31Z2009-12-03T13:24:40Z
<p>Can somebody point me to a good interview question repository for java/j2ee programming and architect position?</p>
http://stackoverflow.com/questions/1814653/object-oriented-design-interview-question4Object Oriented Design Interview Questioncedar7152009-11-29T04:27:38Z2009-12-02T12:27:16Z
<p>Any advice on solving <a href="http://www.nofluffjuststuff.com/blog/john%5Fheintz/2008/08/my%5Ffavorite%5Finverview%5Fquestion" rel="nofollow">this</a> problem?</p>
http://stackoverflow.com/questions/1549533/know-of-a-puzzleland0Know of a Puzzleland? [closed]Manav Sharma2009-10-11T01:00:30Z2009-12-02T10:55:08Z
<p>Puzzles have always been among the favorites for interviewers.</p>
<p>No doubt they reveal a lot about the problem solving capabilites of the candidate.</p>
<p>Can we all try to put in our 5 cents for the best of the best puzzle websites/ books out there?</p>
<p>One of them I know is 'How would you move Mount Fuji'</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1681554/testing-interview-question-find-a-book-in-the-library0Testing interview question - Find a book in the library [closed]Timothy Chen2009-11-05T16:03:27Z2009-12-02T10:54:26Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/1669517/find-a-book-in-a-huge-library-interview-question">Find a book in a huge library (interview question)</a> </p>
</blockquote>
<p>(Re-opened with programming tag)</p>
<p>What is your answer for this question?</p>
<p>You are in a very huge library that has no computer access, and you're looking for one particular book.</p>
<p>You look up where the book suppose to be from the card catalog, and went to shelf X to find it.</p>
<p>However the book is not there.</p>
<p>There is only one person that can answer questions, which is the libarian, but he only answers yes/no responses. Plus, his answers might not be correct.</p>
<p>What is your stratgey for finding this book?</p>
http://stackoverflow.com/questions/1826501/best-possible-algorithm-to-check-if-two-linked-lists-are-merging-at-any-point-if2Best Possible algorithm to check if two linked lists are merging at any point? If so, where?claws2009-12-01T14:24:05Z2009-12-02T07:47:46Z
<p>Hello,</p>
<p>This is an interview question for which I don't have an answer.
Given Two lists, You cannot change list and you dont know the length.
Give best possible algorithm to:</p>
<ol>
<li>Check if two lists are merging at any point?</li>
<li>If merging, at what point they are merging?</li>
<li>If I allow you to change the list how would you modify your algorithm?</li>
</ol>
http://stackoverflow.com/questions/968441/should-we-hire-someone-who-writes-c-in-perl15Should we hire someone who writes C in Perl?paxdiablo2009-06-09T06:20:42Z2009-12-01T05:42:54Z
<p>One of my colleagues recently interviewed some candidates for a job and one said they had very good Perl experience.</p>
<p>Since my colleague didn't know Perl, he asked me for a critique of some code written (off-site) by that potential hire, so I had a look and told him my concerns (the main one was that it originally had no comments and it's not like we gave them enough time).</p>
<p>However, the code works so I'm loathe to say no-go without some more input. Another concern is that this code basically looks exactly how I'd code it in C. It's been a while since I did Perl (and I didn't do a lot, I'm more a Python bod for quick scripts) but I seem to recall that it was a much more expressive language than what this guy used.</p>
<p>I'm looking for input from real Perl coders, and suggestions for how it could be improved (and why a Perl coder <em>should</em> know that method of improvement).</p>
<p>You can also wax lyrical about whether people who write one language in a totally different language should (or shouldn't be hired). I'm interested in your arguments but this question is primarily for a critique of the code.</p>
<p>The spec was to successfully process a CSV file as follows and output the individual fields:</p>
<pre><code>User ID,Name , Level,Numeric ID
pax, Pax Morgan ,admin,0
gt," Turner, George" rubbish,user,1
ms,"Mark \"X-Men\" Spencer","guest user",2
ab,, "user","3"
</code></pre>
<p>The output was to be something like this (the potential hire's code actually output this):</p>
<pre><code>User ID,Name , Level,Numeric ID:
[User ID]
[Name]
[Level]
[Numeric ID]
pax, Pax Morgan ,admin,0:
[pax]
[Pax Morgan]
[admin]
[0]
gt," Turner, George " rubbish,user,1:
[gt]
[ Turner, George ]
[user]
[1]
ms,"Mark \"X-Men\" Spencer","guest user",2:
[ms]
[Mark "X-Men" Spencer]
[guest user]
[2]
ab,, "user","3":
[ab]
[]
[user]
[3]
</code></pre>
<p>Here is the code they submitted:</p>
<pre><code>#!/usr/bin/perl
# Open file.
open (IN, "qq.in") || die "Cannot open qq.in";
# Process every line.
while (<IN>) {
chomp;
$line = $_;
print "$line:\n";
# Process every field in line.
while ($line ne "") {
# Skip spaces and start with empty field.
if (substr ($line,0,1) eq " ") {
$line = substr ($line,1);
next;
}
$field = "";
$minlen = 0;
# Detect quoted field or otherwise.
if (substr ($line,0,1) eq "\"") {
$line = substr ($line,1);
$pastquote = 0;
while ($line ne "") {
# Special handling for quotes (\\ and \").
if (length ($line) >= 2) {
if (substr ($line,0,2) eq "\\\"") {
$field = $field . "\"";
$line = substr ($line,2);
next;
}
if (substr ($line,0,2) eq "\\\\") {
$field = $field . "\\";
$line = substr ($line,2);
next;
}
}
# Detect closing quote.
if (($pastquote == 0) && (substr ($line,0,1) eq "\"")) {
$pastquote = 1;
$line = substr ($line,1);
$minlen = length ($field);
next;
}
# Only worry about comma if past closing quote.
if (($pastquote == 1) && (substr ($line,0,1) eq ",")) {
$line = substr ($line,1);
last;
}
$field = $field . substr ($line,0,1);
$line = substr ($line,1);
}
} else {
while ($line ne "") {
if (substr ($line,0,1) eq ",") {
$line = substr ($line,1);
last;
}
if ($pastquote == 0) {
$field = $field . substr ($line,0,1);
}
$line = substr ($line,1);
}
}
# Strip trailing space.
while ($field ne "") {
if (length ($field) == $minlen) {
last;
}
if (substr ($field,length ($field)-1,1) eq " ") {
$field = substr ($field,0, length ($field)-1);
next;
}
last;
}
print " [$field]\n";
}
}
close (IN);
</code></pre>
http://stackoverflow.com/questions/1824152/db-operations-in-asp-net-with-c1DB Operations in asp.net with c#Nagu2009-12-01T05:25:51Z2009-12-01T05:37:42Z
<p>I have a question from an interviewer:</p>
<p>If two users open the same page, one person adding 105 record and another person deleting the same record, what happens in this scenario?</p>
<p>How do I answer this?</p>
http://stackoverflow.com/questions/1059948/should-inability-to-code-under-pressure-be-a-valid-excuse-when-writing-code-in27Should "inability to code under pressure" be a valid excuse when writing code in an interview?Jim McKeeth2009-06-29T19:11:04Z2009-12-01T04:48:16Z
<p>I've come up with what I believe are realistic problems to work on during an interview. Frequently I have candidates respond that they cannot code under the pressure of me watching them code (via Live Meeting or Locally). Is this a valid excuse for inability to complete the task (or taking too long) during the interview? If so, what can I do to decrease the pressure during the interview process? </p>
<p>It would seem that being unable to program under this kind of pressure could be problematic in typical employment because there are times when we as developers are fixing code when our manager is standing beside us, or during internal demos with product management. Additionally there is also the pressure that is typical with programming jobs that comes with deadlines (yes, we all hate them) and bug fixes.</p>
<p><strong>Edit:</strong> I do my best to not "breathe down their necks" but I don't exactly abandon them during the process. Maybe I will take the "<em>get the hell out of there</em>" approach. </p>
http://stackoverflow.com/questions/1815109/best-forum-for-oracle-pl-sql-sql0Best Forum for Oracle PL/SQL, SQL? [closed]P Sharma2009-11-29T09:40:30Z2009-11-29T18:34:47Z
<p>Which is the best Forum for Oracle PL/SQL and SQL?</p>
http://stackoverflow.com/questions/1810351/what-to-look-for-in-a-candidate-with-over-8-years-of-experience-in-c-c-linux0What to look for in a candidate with over 8 years of experience in C, C++, Linux Application Development?Mark2009-11-27T19:35:14Z2009-11-28T14:43:19Z
<p>I need to interview a candidate with over 8 years of experience in Linux using C/C++.</p>
<p>What would be the best way to judge such a candidate?</p>
<p>Do I need to test his understanding of algorithms?</p>
<p>Do I need to test his programming skills by asking to write a program?</p>
<p>How should I test his understanding of Linux?</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem68What is your solution to the FizzBuzz problem?saniul2008-08-02T12:53:19Z2009-11-28T11:28:32Z
<p>See <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">here</a></p>
<p>Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".</p>
<p><em>Disclaimer: I do realize this is easy, and I understand the content of the Coding Horror post I just linked to</em></p>
http://stackoverflow.com/questions/1798780/using-a-take-home-coding-component-in-interview-process11Using a "take-home" coding component in interview processJeff Sargent2009-11-25T17:56:00Z2009-11-27T12:09:39Z
<p>In recent interviews I have been asking candidates to code through some questions on the whiteboard. I don't feel I'm getting a clear enough picture of the candidates technical ability with this approach. Granted, the questions might not be good enough, maybe the interview needs to be longer, etc, but I'm wondering if a different approach would be better.</p>
<p>What I'd like to try is to create a simple, working project in Visual Studio and have it checked into source control. The candidate can check that code out from home/wherever and then check back in work representing their response to the assignment that I'll provide. I'm thinking that if the window of time is short enough and the assignment clear enough then the solution will be safe enough from all-out Googling (i.e. they couldn't search for and find the entire solution online). I would then be able to review the candidates work. </p>
<p>Has enough worked with something like this before, either to vet a candidate or as a candidate yourself? Any thoughts in general?</p>
<p>P.S. my first StackOverflow question - hi guys and gals.</p>
<p>EDIT: I've seen comments about asking someone to work for free - I wouldn't mind paying the person for their time.</p>
http://stackoverflow.com/questions/205893/sharepoint-interview-questions21SharePoint interview questionsashwnacharya2008-10-15T18:38:17Z2009-11-27T09:56:46Z
<p>Let's have a list of some good interview questions for SharePoint developers. Please provide one question per entry, and if possible, the answers.</p>
<p>Also, please feel free to suggest corrections if the provided answers are wrong.</p>
<p>I will go first: </p>
<p>Q: How does SharePoint store pages?</p>
<p>A: <a href="http://stackoverflow.com/questions/125805/how-to-locate-sharepoint-document-library-source-page-on-the-server#127138">How-to-locate-sharepoint-document-library-source-page-on-the-server?</a></p>
http://stackoverflow.com/questions/731832/interview-question-ffn-n196Interview question: f(f(n)) == -nHrvoje Prgeša2009-04-08T21:04:18Z2009-11-26T14:25:49Z
<p>A question I got on my last interview:</p>
<blockquote>
<p>Design a function <code>f</code>, such that:</p>
<pre><code>f(f(n)) == -n
</code></pre>
<p>Where <code>n</code> is a 32 bit <strong>signed integer</strong>; you can't use complex numbers arithmetic.</p>
<p>If you can't design such a function for the whole range of numbers, design it for the largest range possible.</p>
</blockquote>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1785926/how-to-check-the-personality-of-the-interviewee2How to check the personality of the interviewee? [closed]Igor Oks2009-11-23T21:00:59Z2009-11-26T07:00:22Z
<p>At a typical interview I ask several technical questions which check the interviewee's professional qualities quite well.</p>
<p>But even more important for me is to check his personal (behavioral) qualities, such as:</p>
<ul>
<li>Will he fit in the team? Is he a nice person to be around 9 hours a day? </li>
<li>How responsible he is? </li>
<li>How motivated he is? Will he care about getting his tasks done really well?</li>
</ul>
<p>I cannot hire a psychologist in order to check these qualities professionally. Can you give me ideas, how can I check them as a part of an interview?</p>
http://stackoverflow.com/questions/578359/hiring-a-programmer-looking-for-the-right-attitude25Hiring a programmer: looking for the "right attitude"Totophil2009-02-23T16:47:59Z2009-11-25T12:28:52Z
<p>It's actually two questions in one:</p>
<ul>
<li><p>What is the right attitude for a programmer?</p></li>
<li><p>How do you (or would you) look for one when interviewing or during hiring process?</p></li>
</ul>
<p>Please note this question is not about personality or traits of a candidate, it is about their attitude towards what they do for living. This is also not about reverse of programmers pet peeves.</p>
<p>The question has been made community wiki, since I am interested in a good answer rather than reputation. I disagree that the question is purely subjective and just a matter of opinion: clearly some attitudes make a better programmer than others. Consecutively, there might quite possibly exist an attitude that is common to the most of the better programmers.</p>
<p><hr /></p>
<p><strong>Update</strong>:</p>
<p>After some deliberation I came up with the following attitude measurement scales:</p>
<ul>
<li><p>identifies themselves with the job ↔ fully detached</p></li>
<li><p>perceives code as a collection of concepts ↔ sees code as a sequence of steps</p></li>
<li><p>thinks of creating software as an art ↔ takes 100% rational approach to design and development</p></li>
</ul>
<p>Answers that include some sort of a comment on the appropriateness of these scales are greatly appreciated.</p>
<p><hr /></p>
<p><a href="http://wordnetweb.princeton.edu/perl/webwn?s=attitude" rel="nofollow">Definition of "attitude"</a>: <em>a complex mental state involving beliefs and feelings and values and dispositions to act in certain ways; "he had the attitude that work was fun"</em> </p>
<p>The question came as a result of some reflection on the top voted <a href="http://stackoverflow.com/questions/534624/how-do-you-ensure-code-quality/534672#534672">answer</a> to "<a href="http://stackoverflow.com/questions/534624/how-do-you-ensure-code-quality">How do you ensure code quality</a>?" here on Stack Overflow.</p>