active questions tagged interview - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T08:31:06Z http://stackoverflow.com/feeds/tag/interview http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1691064/what-is-a-good-coding-platform-to-use-for-telephone-coding-interview 2 What is a good (coding) platform to use for telephone coding interview? rxin 2009-11-06T22:52:34Z 2009-11-08T07:42:31Z <p>We are going to interview some candidates over the phone and we need the candidate to write code (pseudo code). Obviously, asking the candidate to read the code out loud to us over the phone isn't ideal. </p> <p>I wonder if there is any good platform to do this?</p> <p>I know Facebook uses a simple program they wrote by themselves, and Google uses Google Doc. But unfortunately we don't have services by ourselves. Are there any good alternatives (other than Google Doc) that is open and free?</p> http://stackoverflow.com/questions/1517999/what-types-of-topics-and-questions-can-be-expected-when-interviewing-for-entry-l 1 What types of topics, and questions can be expected when interviewing for entry level programming/IT positions? CitadelCSCadet 2009-10-05T02:18:45Z 2009-11-08T07:35:32Z <p>I am in my senior year, and I am preparing for some interviews. I am wondering what I should review, and what I should prepare for when I'm getting ready for these interviews.</p> <p>What types of questions are asked during interviews?</p> <p>What key points and suggestions can you give me that might help me?!</p> http://stackoverflow.com/questions/1574142/how-to-interview-a-customer-to-take-requirements 1 How to interview a customer to take requirements? Eduardo León 2009-10-15T18:17:43Z 2009-11-08T02:01:30Z <p>I currently work as a PeopleSoft technical consultant, a title that, in practice, means that I'm a PeopleCode programmer. Documents with specifications somehow arrive to my desk and I just implement what the papers say.</p> <p>However, I'm going to be assigned to a project in which I'm going to be a functional consultant as well, that means that I have to ask the customer what their business processes are and how PeopleSoft should support and enhance these processes. After that, I have to write the specifications themselves, so that technical consultants (myself included) can implement them.</p> <p>I have no problems with business process modeling nor writing specifications, however, I have never been good at interviewing people nor at dealing with people in first place, so I would like to ask you all whether you have some tips that I could take into consideration before the interview ends in a disaster.</p> http://stackoverflow.com/questions/1694002/should-i-ask-the-interviewer-if-i-can-speak-to-other-developers 24 Should i ask the interviewer if i can speak to other developers? cottsak 2009-11-07T18:45:25Z 2009-11-07T22:06:33Z <p>I've always thought that whether i loved or hated a role that i would be objective enough to help out a fellow dev if he ever wanted general info about a workplace/role - say he was in for an interview/walkthru.</p> <p>As a job seeker, is (1) ok to ask the interviewer/company for permission to contact devs to ask them questions or (2) in a walkthru is it ok to just cold-ask other staff questions about how the workplace runs (general/social/business/technical)? Is this rude or OK? Should it be encouraged? I just want to know how to get that inside info that the interviewer might hide.</p> <p>What is ok? What is not? What have you tried in the past that has/not worked?</p> http://stackoverflow.com/questions/1684917/what-questions-should-a-javascript-programmer-be-able-to-answer 17 What questions should a JavaScript programmer be able to answer? André Pena 2009-11-06T01:53:13Z 2009-11-06T17:56:52Z <p>Suppose a company is going to hire JavaScript coders. I wonder what question should this company use to properly evaluate them. Even though general programming skills are more important than technology-specifics, they need to be tested on what they are going to work with.</p> <p>How would you do that? How would you test if they have the proper knowledge?</p> http://stackoverflow.com/questions/1201639/why-do-interviewers-ask-advanced-questions 5 Why do interviewers ask advanced questions? LikeToCode 2009-07-29T16:55:08Z 2009-10-23T11:24:24Z <p>I've been programming for a few years in C# and XML. I used only the basics of those languages and have survived on the web for info like arrays and text manipulations. But when I am get interview, the interviewers ask only advanced questions - I found the answers later in the Advanced sections in the books on the subject. </p> <p>Why do the interviewers ask such advanced questions? The job looks almost the same as what I was previously doing, so there's need for advanced knowledge, like what class delegate is or XPath commands.</p> <p>Questions are: </p> <ol> <li>What version of XSL does .NET 3.5 uses? </li> <li>What XPath command to use to get value in element X? </li> <li>What are class delegates in C# </li> <li>Does C# allows multiple interface inheritance? </li> <li>How do you access GAC in C#?</li> </ol> http://stackoverflow.com/questions/1303688/what-is-wrong-with-this-c-function-to-find-the-endianness-of-a-machine-at-runtime 5 What is wrong with this C function to find the endianness of a machine at runtime? sigjuice 2009-08-20T02:45:41Z 2009-10-21T16:55:58Z <p>This is what I offered at an interview today.</p> <pre><code>int is_little_endian(void) { union { long l; char c; } u; u.l = 1; return u.c == 1; } </code></pre> <p>My interviewer insisted that <code>c</code> and <code>l</code> are not guaranteed to begin at the same address and therefore, the union should be changed to say <code>char c[sizeof(long)]</code> and the return value should be changed to <code>u.c[0] == 1</code>.</p> <p>Is it correct that members of a union might not begin at the same address?</p> http://stackoverflow.com/questions/1556830/interviewers-expect-job-candidates-for-application-development-jobs-to-know-hexad 3 Interviewers expect job candidates for application development jobs to know hexadecimal arithmetic Phil 2009-10-12T20:45:07Z 2009-10-12T21:07:17Z <p>Does anyone think it is silly for interviewers to expect potential Software Engineers specializing in application development or UI to know hexadecimal arithmetic? </p> http://stackoverflow.com/questions/1536189/which-is-more-important-experience-or-certifications 5 Which is more important - experience or certifications? PJ 2009-10-08T07:36:08Z 2009-10-10T20:08:38Z <p>Which is more important - </p> <ol> <li><p><strong>Certifications</strong></p></li> <li><p><strong>Real time experience</strong></p></li> </ol> <p>In a interview if you have to select a candidate from a list of 2 candidates then whom would you select</p> <ul> <li>the one with real time experience in that domain for say 4 years or</li> <li>the one with lots of certifications in that domain in his kitty but either 1 year or no experience in that domain?</li> </ul> <p>Please advice</p> http://stackoverflow.com/questions/1482508/math-questions-at-a-programmer-interview 2 Math questions at a programmer interview? void.pointer 2009-09-27T00:42:29Z 2009-10-09T04:12:27Z <p>So I went to an interview at Samsung here in Dallas, Texas. The way the recruiter described the job, he didn't make it sound like it was too math-oriented. The job basically involved graphics programming and C++. Yes, math is implied in graphics programming, especially shaders, but I still wasn't expecting this...</p> <p>The whole interview lasted about an hour and a half and they asked me nothing but math-related questions. They didn't ask me a single programming question, which I found odd. About all they did was ask me how to write certain math routines as a C++ function, but that's about it. What about programming philosophy questions? Design patterns? Code-correctness? Constness? Exception safety? Thread safety? There are a zillion topics that they could have covered. But they didn't.</p> <p>The main concern I have is that they didn't ask any programming questions. This basically implies to me that any programmer who is good at math can get a job here, but they might put out terrible code.</p> <p>Of course, I think I bombed the interview because I haven't used any sort of linear algebra in about a year and I forget math easily if I haven't used it in practice for a while. Are any of my other fellow programmers out there this way? I'm a game programmer too, so this seems especially odd. The more I learn, the more old knowledge that gets "popped" out of my "stack" (memory).</p> <p>My question is: Does this interview seem suspicious? Is this a typical interview that large corporations have? During the interview they told me that Google's interview process is similar. They have multiple, consecutive interviews where the math problems get more advanced.</p> http://stackoverflow.com/questions/1524331/is-it-feasible-to-interview-a-person-for-testing-lead-position-by-development-lea 0 Is it feasible to interview a person for testing lead position by development lead only? PJ 2009-10-06T08:40:31Z 2009-10-06T14:33:16Z <p>Is it feasible to interview a person for testing lead position by development lead only. and base on their feedback hire the person for the said position. Testing is something different from coding and it has different methodologies. Like every technology a tester learns new things everyday nad it will never end. </p> <p>being a development lead it will not be possible to know the methodologies and processes involved in testing. So what is the probability that the recruitment is feasible if done by development lead only and not by higher management.</p> http://stackoverflow.com/questions/1486620/what-is-important-to-put-on-a-resume-when-searching-for-an-entry-level-job-in-sof 1 What is important to put on a resume when searching for an entry level job in Software Development? [closed] CitadelCSCadet 2009-09-28T11:41:48Z 2009-09-28T11:55:03Z <blockquote> <p><strong>Possible Duplicates:</strong><br /> <a href="http://stackoverflow.com/questions/249612/what-is-required-knowledge-when-applying-for-an-entry-level-or-junior-programmer">What is required knowledge when applying for an entry level or junior programmer position? (think &ldquo;first job&rdquo;)</a><br /> <a href="http://stackoverflow.com/questions/1223117/what-should-go-on-a-resume-for-a-software-developer-still-in-college-looking-for">What should go on a resume for a software developer still in college looking for a job after graduation?</a> </p> </blockquote> <p>I am going to be graduating college, and I am stumped to what is important to put on my resume and what not to. Should I put anything pertaining to my courses, or what? Any Advice to glorify it?</p> http://stackoverflow.com/questions/1403064/best-c-book-for-interview 8 best C++ book for interview? northTiger 2009-09-10T02:10:50Z 2009-09-27T02:59:22Z <p>what is the best C++ book to prepare a advanced C++ interview. I would like a book with very good summary on concepts and tricks asked in interviews.</p> http://stackoverflow.com/questions/1311762/design-patterns-and-interview-question 4 Design patterns and interview question unknown (google) 2009-08-21T12:54:01Z 2009-09-24T15:36:35Z <p>When I was learning to code, I read up on the design patterns like a good boy. Long after this, I started to actually understand them. </p> <p>Design discussions such as those on this site constantly try to make the rules more and more general, which is good. But there is a line, over which it becomes over-analysis starts to feed off itself and as such I think begins to obfuscate the original point - for example the "What's Alternative to Singleton" post and the links contained therein.</p> <p><a href="http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton">http://stackoverflow.com/questions/1300655/whats-alternative-to-singleton</a></p> <p>I say this having been asked in both interviews I’ve had over the last 2 weeks what a singleton is and what criticisms I have of it.</p> <p>I have used it a few times for items such as user data (simple key-value eg. last file opened by this user) and logging (very common i'm sure). I've never ever used it just to have what is essentially global application data, as this is clearly stupid.</p> <p>In the first interview, I reply that I have no criticisms of it. He seemed disappointed by this but as the job wasn’t really for me, I forgot about it. </p> <p>In the next one, I was asked again and, as I wanted this job, I thought about it on the spot and made some objections, similar to those contained in the post linked to above (I suggested use of a factory or dependency injection instead). He seemed happy with this. </p> <p>But my problem is that I have used the singleton without ever using it in this kind of stupid way, which I had to describe on the spot. Using it for global data and the like isn’t something I did then realised was stupid, or read was stupid so didn’t do, it was just something I knew was stupid from the start. Essentially I’m supposed to be able to think of ways of how to misuse a pattern in the interview? Which class of programmers can best answer this question? The best ones? The medium ones? I'm not sure....</p> <p>And these were both bright guys. I read more than enough to get better at my job but had never actually bothered to seek out criticisms of the most simple of the design patterns like this one.</p> <p>Do people think such questions are valid and that I ought to know the objections off by heart? Or that it is reasonable to be able to work out what other people who are missing the point would do on the fly? Or do you think I’m at least partially right that the question is too unsubtle and that the questions ought to be better thought out in order to make sure only good candidates can answer.</p> <p>PS. Please don’t think I’m saying that I’m just so clever that I know everything automatically - I’ve learnt the hard way like everyone else. But avoiding global data is hardly revolutionary. </p> http://stackoverflow.com/questions/1410509/online-developer-testing-for-pre-screening-candidates 7 Online Developer Testing for Pre-Screening Candidates troylar 2009-09-11T12:12:05Z 2009-09-14T23:20:24Z <p>Are there are any good online developer testing sites for pre-screening candidates? I know the freelance site ELance has a "certification" system where candidates can take tests on various technologies. It won't be 100% accurate, but it at least might expose the less experienced candidates.</p> http://stackoverflow.com/questions/1218401/using-notes-during-an-interview 1 Using notes during an interview? java_developer_2 2009-08-02T08:14:40Z 2009-09-10T14:28:42Z <p>Would you approve of someone using notes during an interview? Whether they're technical questions or not? </p> <p>My theory is, I'd be able to look stuff up on the job, so if I have something written down it just shows that I'm organized and prepared. </p> <p>Obviously I'm not talking about something excessive like having a laptop that I google with for every single question, but just some stuff I wrote down. </p> <p>What do you think? </p> http://stackoverflow.com/questions/1185363/what-was-the-best-puzzle-brainteaser-youve-ever-been-asked-at-an-interview-and 2 What was the best Puzzle/Brainteaser you've ever been asked at an interview? And Why? Artem Russakovskii 2009-07-26T19:40:55Z 2009-08-20T09:44:45Z <p>There have been many questions related to what one should ask interviewees, what you should ask a company you're interviewing at, etc. I searched and I don't think this one is a duplicate. Also, community wiki from the start.</p> <p>So here goes: <strong>What is the most interesting (challenging, fun, original, useful) brainteaser or puzzle question you've been asked at an interview and why?</strong></p> <p>For me, it was this one that I was asked recently (I found a similar one online and copy-pasted it here to avoid retyping the whole thing):</p> <blockquote> <p>There are ten gnomes. They are in the dungeon. Their captor has given the gnomes a chance of survival. Here is the offer:</p> <p>He lines the gnomes up in a single-file row. This means that the tenth gnome sees the back of the person in front of him, and there is no gnome behind the tenth gnome. The ninth gnome has the tenth gnome behind him and the eighth gnome directly in front of him, and so on. Finally, the first gnome has the second gnome directly behind him, but there is no one in front of the first gnome.</p> <p>The captor has a bag full of many black hats and many white hats. There is not necessarily the same number of black hats as white hats. (important) He randomly reaches into his bag and places a hat on each of the gnomes. This means that the tenth gnome can see everyone's hat except his own, the ninth gnome can see everyone's hat except his own and the tenth gnome's hat, and so on. The first gnome can see no one's hat.</p> <p>The captor then takes out his gun and puts it to the temple of the tenth gnome. He asks the gnome, "What color is your hat?" If the gnome answers correctly, he lives and gets freed from the dungeon. If he does not, he dies. He continues up the line in this progression.</p> <p>However, before placing the hats on the gnomes, he allows the gnomes to meet as a group and discuss a strategy to save as many of the gnomes as possible. How many gnomes can you guarantee to save, and with what strategy?</p> <p>REMEMBER: When it is your turn to say the color of your hat you must ONLY say "white" or "black." If you say anything else, the king will shoot you and all of the remaining gnomes.</p> </blockquote> <p>Once I figured out the solution to this one, the interviewer then posed another question:</p> <blockquote> <p>What if the number of colors were switched to 4? How many gnomes can you save then?</p> </blockquote> <p>The answer is here for those who don't like spoilers: <a href="http://tinypaste.com/b578c" rel="nofollow">http://tinypaste.com/b578c</a></p> http://stackoverflow.com/questions/348143/whare-are-general-knowledge-you-should-learn-before-java-developer-inteview 2 Whare are general knowledge you should learn before (Java Developer) inteview? Manet 2008-12-07T21:45:23Z 2009-08-07T15:56:08Z <p>You are applying for a role "Java Developer" and you are called for an interview. What are the general knowledge you should/must learn before you sit in front of the panel?</p> http://stackoverflow.com/questions/1221242/interviewing-for-a-team-lead 7 Interviewing for a Team Lead Steve 2009-08-03T08:40:10Z 2009-08-03T10:05:22Z <p>So I'm leaving my job for a role at another company and before I leave I have one last task: I must hire a replacement for myself <code>&lt;gulp&gt;</code>. The reason for the <code>&lt;gulp&gt;</code> is that this is the last thing I will do for my team, and I really don't want to leave them with a dud as they are great bunch of guys.</p> <p>As a team lead I've interviewed for developers before with mixed success - from my perspective recruitment seems really tough and it's not something you get to practice very often. However there are already some excellent posts on Stackoverflow on the subject of hiring pure developers. I've been through these and got some great tips on the technical side of the recruitment process.</p> <p>The problem I'm facing is that the skills that I need for my job as a team lead are very different to those required for a developer. The successful person needs to be part man manager, part project manager, part problem-solver-in-chief, part agony-aunt. They've also got to be able to stand up in front of clients and management and give a good account of themselves.</p> <p>So any thoughts, advice, shared experiences or pearls of wisdom on the subject of hiring a team lead would be greatly appreciated.</p> <p><strong>Suggestion:</strong> Jorge makes a great suggestion - get the team involved in the process. Get the candidate to sit down and talk to each team member and quiz them about what they working on, how they are going about doing it. As a nice twist we could get each team member to pose question/problem to the candidate about what they are working on.</p>