I teach a software engineering lab class for Seniors in Computer Science and Engineering (Bachelor's degree). I understand that many companies have interviewees solve simple programming problems on a whiteboard or piece of paper.

I would like to prepare my students for this as they do not normally have to stand in front of a judgmental audience and write programs on a whiteboard. Thus, I am looking for some good questions to ask them.

The question should be answerable in 15-30 minutes, on a whiteboard, by a solid CSE graduate. I am looking for programming questions, not puzzles.

link|improve this question

feedback

closed as not constructive by derobert, casperOne Nov 30 '11 at 3:36

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

22 Answers

up vote 19 down vote accepted

After years of trying various approaches to this problem in job interviews, I have settled on what I think is the best challenge:

strstr: find the first location of a string in another string.

This is a well-known function across many languages, and can be coded in under fifteen lines. (Anything more is too much for a whiteboard.)

strstr is also perfect because it is just the right level of difficulty: two levels of looping. It sounds like it might be too easy, but it will instantly separate those who can code from those who cannot. In fact, maybe only one in five candidates gets it right without help.

link|improve this answer
feedback

All these answers make me cringe. Unfortunately it is an occupational hazard that your students will have to deal with. When asked algorithmic problems candidates often lock up with fear, their brain shuts down and an otherwise competent person seems unable to answer simple technical questions. I blame this response for candidate failure more so than their inability to solve a problem. I avoid algorithmic problems for these reasons. Besides, a person's ability or inability to answer these types of questions doesn't tell me what I need to know. So your students will have to be aware of more than these gimmicky kind of interviews.

The reality is that simple problems like these don't tell you if the developer is worth anything. A CS grad is more likely to be able to build a string function on the spot than a veteran that has been developing real software projects for a decade. Real world problems aren't as low level as these types of tests. Most real world problems should be solved using libraries where simple string functions have been perfected. If my employees wrote a new low level function every time I needed a web application, everything would take way too long to be practical. The fact is most developers in the real world don't think at this level and aren't burdened with having to know how to do things that others have already solved better. Of course if your job is to make database engines, then sure you need to know it, but it's inconsequential to the average software engineer. The problems being given to candidates should actually match the types of problems you expect them to solve when working for you.

To get an understanding of how candidates think and if they are creative, think about how you would solve one of the high level problems we solve today. Likely you'd create some symbolic representation of the problem in your mind, on the computer, or on a whiteboard. Possibly prototype in pseudo code, use a UML design tool, or put some flow charts on a whiteboard. During interviews I ask high level questions. Can you solve the big problems and think out elegant solutions. If you can do this then you will be able pull out a book and write that string function when you need to.

link|improve this answer
I would give you 100 points of my own rep if I could. GREAT answer for how the real world works :) – Joe Jan 12 at 21:40
feedback

I tend to ask questions that should be solvable within a few minutes so that there is time for Q&A on their implementation. One question I like to ask is:

Write a function that counts the number of bits in a list of integers.

I'm often surprised on how many people have trouble with this.

link|improve this answer
feedback

For OO languages:

Implement a money class that:

  • Doesn't suffer from precision loss (big numbers = bad juju in floating point)
  • Stores money internally in US dollars
  • Implements methods that return the value of money in Euros, Yen, Pounds, etc

Implement a roman numeral class (accepts roman numeral strings or integers, stores the number, returns integer or roman numerals, doesn't have to be perfect (say only for numbers up to C)

link|improve this answer
feedback

Implement a binary search (presuming a sorted input).

Most people get it wrong the first couple times through - I only ever use an already-written and -verified binary search because I get it wrong usually the first two times, too :)

link|improve this answer
2  
+1 Just conducted a half dozens interviews. None of the candidates answered the question smoothly. "Although the basic idea of binary search is comparatively straightforward, the details can be surprisingly tricky." — Donald Knuth. – FMc Jul 30 '10 at 13:11
@FM - in 'Programming Pearls 2d ed', the author notes there was an error in the first edition with regards to binary search - and he is a pro :) – warren Aug 2 '10 at 19:37
feedback

A good one I've used before is a simple question that reveals code reading skills, knowledge of binary, inductive reasoning skills, and communication skills (as the answer is probably not obvious, and questions are encouraged)

What useful question does the following function answer about a number? Yes, it is a useful and distinct quality for a number to have, especially so in computer science. (Please tell them to ask questions and walk themselves through their thought process on the whiteboard)

bool mystery(unsigned int num){
    unsigned int other = num - 1;
    bool result = ((num & other) == 0);
    return result;
}

The answer will be in a comment to this post.

link|improve this answer
This function answers the question: Is this number a power of two? (Bonus points if they realize it is incorrect for the input number 0) – Sufian Sep 25 '08 at 20:51
feedback

Here are some I've been asked in interviews:

Write a function that does integer division without using / or %.

Given two nodes in a binary search tree sketch a function that finds their least common ancestor.

"Programming Pearls" by Jon Bentley is a great resource for these types of puzzles. Also "Programming Interviews Exposed" is a good resource.

link|improve this answer
feedback

Classic c style string questions:

  1. implement strstr,strrchr, strpbrk, strlen functions and all other string manipulation: Contains, Replace, etc... Performance wise.

  2. implement strtok. Implement it as thread safe.

Knowing pointers is a basic test. Experienced programmer should be able to do it within 15 minutes.

link|improve this answer
feedback

There are quite a few sites dedicated to this. e.g., http://www.techinterviews.com/. Most of them have puzzle questions, but they also have real technical questions as well. I'd check out those if you want a big list. There are hundreds of good questions in lots of different areas.

link|improve this answer
feedback

One I use a lot is to write a function that reverses the words in a sentence, excluding punctuation. There are several variations on this by allowing/not allowing built-in methods for string manipulation.

So, the sentence "The quick brown fox" becomes "fox brown quick The".

The more important part of these excercises is to see/hear how the interviewee reasons out the solution. There is usually more than one way to solve the problem none of which are "more right" than any others.

link|improve this answer
feedback

The number one way I eliminate candidates is by very basic SQL experience. To that end I ask a couple of what should be simple SQL questions.

  1. requires them to know how to do a simple select statement with a where clause.
  2. requires them to do an inner (and outer) join on two tables
  3. requires them to update records with a where clause.

Unfortunately, 90% of the so called application programmers out there can't do those queries. I can understand an embedded systems dev not knowing them, but anyone with a modicum of experience doing client / server or web apps should be able to answer them quickly.

Also, I don't even care about exact syntax, as long as they understand the idea.

link|improve this answer
feedback

Implement a simple FIFO (queue) and LIFO (stack).

Implement a priority queue.

Implement a simple linked list.

Implement a whitespace stripping function - removes leading and/or trailing whitespace from a byte array.

Implement a function to convert a positive number into its hexadecimal equivalent, and then the converse.

Implement atoi.

Write a some code which demonstrates limitations of floating point code.

Write a string compare routine in a recursive function.

link|improve this answer
Adam, a stack is not a type of queue. Queues are FIFOs. – Derek Park Sep 25 '08 at 21:03
Not all queues are fifos - a priority queue is still a queue, but is not a fifo. You are correct that stacks are not queues, which is a mistake on my part. Fixed the text. Did someone downvote this just for that one error? Wow, strict types we've got around here! – Adam Davis Sep 25 '08 at 21:29
Your text is still confusing. A stack is a LIFO. A queue is not. The standard queue is a FIFO. Priority queues are different from standard queues, and are still not LIFOs. – Derek Park Sep 25 '08 at 22:54
Doh! I edited incorrectly! My bad... – Adam Davis Sep 25 '08 at 23:58
feedback

You may want to try a few problems from Project Euler they're fairly math oriented, but they can be quite challenging and rewarding.

link|improve this answer
feedback

I'm surprised this hasn't been mentioned but it's my favorite and as an added benefit even non-technical types (read hr) can use it.

Fizz-buzz

link|improve this answer
Jeff Atwood's article on this is a good read as well: codinghorror.com/blog/2007/02/why-cant-programmers-program.html – Jon Schneider Nov 28 '11 at 20:48
feedback

Write pseudo-code that would sort an array using several different algorithms.

link|improve this answer
1  
Probably not a 15 minute board question, though. Maybe just bubble sort. – Adam Davis Sep 25 '08 at 21:30
feedback

Having your students create simple functions on a whiteboard is good practice however I have noticed (at least for the company I work for) when we interview someone the problems they need to solve are much more involved.

The main goal really for us is to see someones approach to an overall problem and how they solved it. For example:

  1. Implement or design a data base structure for a simple login application
  2. Given an xml structure, design classes and parsers to consume and manipulate the xml

All not very difficult problems to solve but they help the interviewer learn how the interviewee approaches a problem, cause once the interviewee has finished the problems or has attempted them, we would discuss their design and approach.

Just food for thought, possibly a good exercise would be to have them explain their approach to solving the problem once they have finished. This also gives them a chance to rethink about the problem while they are explaining it and helps reinforce good communication skills.

link|improve this answer
feedback

The first time I had to do whiteboard coding in an interview I totally flubbed it. My experience was that I was completely unprepared to write (compilable!) code on a blackboard without practice, and any kind of practice would've been an immense help.

Anything simple,a few loop iterations. The important thing is to make it compilable.

link|improve this answer
feedback

Write pseudocode and the sketch of a design for a search engine. What are the parts of the system? How do you define success? What are the different phases of operation?

You can deep-dive into any part of this thing to see if the person answering the question has the chops.

link|improve this answer
feedback

Implement Twitter or iGoogle from scratch, go. (an idea from @rex-m)

link|improve this answer
feedback

Another simple one solvable in just a few minutes:

"Write a function that takes a string as input and returns a Boolean. The function should return true if the string is the same forwards and backwards, false otherwise."

A good follow-up question to this one, if the candidate writes a loop that loops all of the way through the string before exiting when the input actually is a palindrome, is to ask the candidate to optimize their function to require less iterations. (Only looping halfway through the string is required.)

link|improve this answer
feedback

Write a function which counts the number of vowels and consonants in a string. Any language you choose.

link|improve this answer
Trick is not to forget upper and lower, non-letters, and finally a null string. – dacracot Sep 25 '08 at 20:38
I'd use a regex to substitute the letters, then split it into an array, and get the occurences of my strings :D – Mez Sep 25 '08 at 20:54
1  
what about sometimes "Y"? :) – mike511 Sep 25 '08 at 21:02
feedback

This should be solvable in much faster than 15 minutes, but:

"Write a function that, given an array of integers, returns the largest value in the array."

A somewhat common pitfall is that a candidate will end up writing a function that returns 0 if all of the input values are negative. This makes a good opportunity for probing follow-up questions to see if the candidate can determine what they did wrong.

link|improve this answer
feedback

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