vote up 15 vote down star
19

What is your favorite C++ interview question? It may be any question, for example:

algorithms, multithreding, gamedev area, low-level system programming, strings...

flag

77% accept rate
Please put the question in the Text of the question. Your question is only in the title. – abelenky Feb 13 at 22:15

15 Answers

vote up 3 vote down check

Write a simple custom memory allocator for std::vector and for std::list. This checks applicant's:

  • knowledge of STL
  • knowledge of templates
  • knowledge of inheritance
  • possibly knowledge of containers
  • if you make him be complete, this will also draw out his knowledge of some toolchain
  • most importantly, their problem-solving and multi-paradigm software design skills

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.

link|flag
1  
Isn't that a bit hard? I mean, this would be really easy to goof in an interview situation. – Daren Thomas Sep 8 '08 at 19:58
13  
I disagree--custom allocators are pretty obscure in many domains--I think you'd filter out some pretty good candidates, unless you're willing to give them a lot of coaching with their answer. I've been using the STL for 12 years now & have never had a need for a custom allocator! – Drew Hall Apr 26 at 1:13
3  
I disagree too, custom allocator is something I'd do maybe once or twice. I certainly have better things to do that swot up on the contents of Google just for an interview to answer questions I will probably never use again. – gbjbaanb Apr 26 at 16:27
3  
Isnt that a much? If the applicant had reference to STL and was applying for senior level it may be a good question. But without reference... how is one suppose to remember all the typedef needed and methods required that is used behind the scene while the user happily uses the container. – acidzombie24 Jun 17 at 21:51
1  
@acidzombie24: I said I'd provide a reference. – Ben Collins Jun 18 at 15:56
show 9 more comments
vote up 11 vote down

FizzBuzz :)

I love these phone-screen questions from Steve Yegge.

link|flag
vote up 6 vote down

I was asked this one in a c++ course final exam:

Say you have a class Parent with a virtual method a and a class Child that implements a. You also have a bunch of functions:

void f1(Parent p) { p.a(); }
void f2(Parent* p) { p->a(); }
void f3(Parent& p) { p.a(); }

When called with a Child instance, which method will be invoked for f1, f2 and f3?

link|flag
The answer can be found out by thinking through what happens when f1 is passed a child object. What can the compiler know? How is the object passed? (hint: copy constructor). – Daren Thomas Sep 8 '08 at 19:27
Parent::a, child::a, child::a. It's an example of the C++ slicing problem – StackedCrooked Sep 25 at 15:17
vote up 5 vote down

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.

link|flag
vote up 5 vote down

What is the difference between pointer and reference? Please describe the two main differences.

link|flag
1  
References can't be reseated, and therefore must be initialized with a reference. – Corin Sep 8 '08 at 21:22
vote up 5 vote down

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.

link|flag
vote up 5 vote down

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.

link|flag
vote up 3 vote down

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.

link|flag
Put the elements into a stack and then print them from them stack. – grigy Oct 13 at 19:40
vote up 2 vote down

These pages has over 40 examples of C++ interview questions:

http://www.techinterviews.com/?p=238

http://www.techinterviews.com/?p=340

link|flag
vote up 2 vote down

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.

link|flag
vote up 2 vote down

Not specifically C++, but it was about Pointers.

Can a pointer point to itself ?

Answer to this question has earned me my first job.

link|flag
1  
Yes, it can, but only if it's a void*. I guess the interesting part here us the discussion of why it's not possible to declare a type that can point to itself. I suppose you could also talk about what kinds of errors might lead to a pointer that appears to point to itself. – Mark Bessey Sep 25 at 14:03
Does this count: struct selfptr { struct selfptr *ptr; } ? The struct and its ptr member would have the same address, and you could follow it as many times as you like: obj->ptr->ptr->ptr ... – Nefrubyr Sep 25 at 16:08
vote up 1 vote down

When phone-screening candidates, I sometimes ask:

When does a class need a virtual destructor?

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

I did reply there.

link|flag
vote up 0 vote down

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'.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.