What is your favorite C++ interview question? It may be any question, for example:
algorithms, multithreding, gamedev area, low-level system programming, strings...
|
19
|
What is your favorite C++ interview question? It may be any question, for example: algorithms, multithreding, gamedev area, low-level system programming, strings...
|
|||
|
|
|
Write a simple custom memory allocator for
I should add here, in response to a comment, that the point is not to see them write an error-free, compilable implementation on a white board. The point is to check that they are comfortable with the syntax and style of the language, comfortable with some advanced but important concepts, and see how well they think through a problem. Most people, as Drew notes, will never have had a need to write a custom allocator. That's good! That means it's a problem whose solution they won't likely be able to regurgitate from experience. I want to actually see them solve a problem before my eyes. |
||||||||||||||||||||
|
|
|
FizzBuzz :) I love these phone-screen questions from Steve Yegge. |
||
|
|
|
|
I was asked this one in a c++ course final exam: Say you have a class
When called with a |
||||
|
|
|
This article: The Guerrilla Guide to Interviewing has some quite nice thoughts about interviewing and asking C-questions. Personally, I don't see algorithms as a pure C/C++ question. Multithreading - questions about threads are evil, really many programmers won't be able to anwser them correctly (they seem to be quite like Joel's pointers questions). Gamedev - if it's your industry, ask them, but it's not some kind of skill a programmer should have when applying for a job. And questions about strings are really about pointers, so reaction of the person you're talking to as soon as he hear that question should tell you much about him/her. My personal favorite question is always related to a project someone worked on. Listen carefully what he's talking about and try to figure and ask what he could have done better. If it will be about pointers, ask. Really, many people feel much better when they talk about their recent work then when they have to anwser some theoretical questions. |
||
|
|
|
|
What is the difference between pointer and reference? Please describe the two main differences. |
||||
|
|
|
I usually try to avoid asking candidates language specific questions: intelligence and adaptability are more important to me. I think any smart person should be able to learn C++ fairly quickly, and I don't think knowing language specific trivia (e.g. how to write a custom allocator for a stl type) is a good indication of a candidates potential. |
||
|
|
|
|
If speaking of a just one, what is a smart pointer? With a detailed description and typical usage guidelines. Simple and reveals C++ background quickly. |
||
|
|
|
|
This is the one that I was given when I interviewed: Given a singly-linked list that contains a character, you have to print the linked list in reverse order. You are given the head pointer, how would you go about solving the problem. |
||
|
|
|
These pages has over 40 examples of C++ interview questions: |
||
|
|
|
|
One of my favorites is to ask the applicant to write code to shuffle a deck of cards. This is one that sounds easy, but is difficult to get right. See Atwood's The Danger of Naivete and see also How We Learned to Cheat at Online Poker: A Study in Software Security. |
||
|
|
|
|
Not specifically C++, but it was about Pointers. Can a pointer point to itself ? Answer to this question has earned me my first job. |
||||||
|
|
|
When phone-screening candidates, I sometimes ask:
This should be an extremely easy question for someone who has done any amount of C++ class design, but is really hard for people who list C++ on their resume, but don't have any actual experience with it. |
||
|
|
|
|
I wrote a blog post on this subject, before I discovered this question here. I argue that the specific question is not the important thing. It's a small piece of the overall technical interview. |
||
|
|
|
|
I did reply there. |
||
|
|
|
|
For professional games programming: I like to ask a mix of high-level questions (OOP, class design, etc) and low-level questions (write a function that performs endian change, write an Align() function, etc). Some people have the low-level skills but choke on the high-level (so these people are good are optimizing and finding obscure bugs) and then other people know a lot of OOP, UML, etc (so they are good for architecting modules)., but they don't know what happens 'under the hood'. |
||
|
|