vote up 3 vote down star
3

Different companies use different technical questions to try and figure out who the good programmers are.

What is the hardest technical question or problem you have ever had to solve in an interview?

flag

30% accept rate

17 Answers

vote up -2 vote down

I dislike any questions that involve writing code on the fly. I have come to depend too much on the IDE and Google!

link|flag
That's just bad ;-) – Jasper Bekkers Oct 30 '08 at 17:53
vote up 6 vote down

I was asked to solve the traveling salesman problem, that's NP-Hard!

link|flag
Hmm. How did you solve that on the spot ? Or did you just suggest how would you solve it ? – Tomas Pajonk Sep 19 '08 at 11:19
There are plenty of solutions to the problem. I was not required to solve it in polynomial time :) – don.neufeld Sep 19 '08 at 20:27
vote up 0 vote down

I know this will say a lot about my programming "skills" but i got stumped at what a singleton pattern was.

link|flag
It also tells a lot about the person interviewing you ;-) – Jasper Bekkers Oct 30 '08 at 17:55
Same. But I'm still an mid-way undergrad, not clue if they thought I had design pattern experience locked away, or what. – Rev316 Apr 10 at 7:28
vote up 0 vote down

I was in an interview for a programming job this year where I asked more technical questions than the interviewers (mostly Joel test questions).

The other interview was not necessarily IQ-heavy, but did involve doing a little Delphi GUI code verbally. Not even a whiteboard.

link|flag
vote up 0 vote down

I was asked to design a movie (titles and other tags) database and the access GUI for a cell phone.

link|flag
vote up 0 vote down

What is a join (talking about SQL) and what's the difference if it's an Inner or Outer?

Having at the time only experiance with MySQL I was of course unable to answer it accurately but did explain what a join was and how to use one.

All my interviewers realised that looking at the samples of code I had with me was a much better judge of my coding skills.

link|flag
What's the connection to MySQL? That has both inner and outer joins just like every other real rdbms. – ysth Sep 19 '08 at 6:26
vote up 0 vote down

The most difficult technical question I had was during an all day interview. There were 3 interviewers and a white board. I was given a brief description of problem and told to write pseudo-code to handle it. Basically, they wanted me to write a doubly-linked list and the appropriate code to access it.

link|flag
vote up 0 vote down

Create a working excel-like spreadsheet using Java table.

Included making the UI, doing simple calculations and references like +a3+7

A partial answer was acceptable.

I believe we had up to 4 hours to finish it. Could have been 2.

link|flag
vote up 1 vote down

Given the local-to-world coordinate transformation matrices for two distinct objects in 3d space, how can you tell if the objects are facing each other?

This was during an interview at a game dev. company. Sadly, I didn't get the job (although I answered this question correctly), and now I'm stuck in IT working on some stupid website.

link|flag
i feel for you man – Rob Stevenson-Leggett Jan 5 '09 at 13:03
vote up 0 vote down

Given a natural number n, determine if it is prime.

This isn't really that hard unless you want to be super efficient about it.

link|flag
vote up 3 vote down

I've had quite tricky ones when interviewing with Google but unfortunately this is all covered by NDA :( I'm afraid it will be the same for others who've had hard/interesting interview questions with big companies.

Anyway, Facebook's preliminary puzzles seem quite hard in my opinion. I think that they use those to screen candidates.

Google's screening questions on the other hand were way way easier. I guess it's simply different recruiting strategies.

link|flag
The funny thing about Facebook's questions are that the founder of the company could probably not solve them (unless he stole them from someone else which he does have priors for). – Craig Nov 27 '08 at 5:10
vote up 0 vote down

Given a binary tree, write memory-conservative code to add a link that traverses the tree in order first by distance from the root and secondly by left to right position.

While the answer is obvious in retrospect, I didn't make the mental connection in the interview and had to be told the algorithm.

link|flag
vote up 0 vote down

Given an array of integers, I was asked to write a program to find the sub-array with the largest sum. I came up with the O(n) solution, but to write the code, I was taking some time.

link|flag
I don't think I understand the question: is the sub-array of fixed size? Otherwise it's just all the positive integers, no? – Alabaster Codify Dec 28 '08 at 23:07
I believe that the sub-array must have been contiguous. – Thom Smith Oct 16 at 6:12
vote up 0 vote down

I was asked once "Which are the three base things for the OOP?" and I confess, I could not answer at that time! (The answer is "Encapsulation, Inheritance and Polymorphism", written in every OOP book introduction). From then on, I read also the introductions of the books :)

link|flag
Abstraction is arguably the fourth according to some books (Head First Design Patterns for example) – Andrew Nov 27 '08 at 5:11
vote up 3 vote down

For me it was being given a simple problem but being asked for the optimal solution...

Given 2 arrays, one of N length, each location in the array stores a single character (ASCII). The second array stores a series of characters [a,b,c].

You need to find the occurrences of the second array, within the first array (that's not really too hard) but you solution must use the minimum amount of array traversal, thus being an optimal solution.

Now if you think about it how big is the first array? Do you index it? What loop could you use? Whats about sorting the array? How could you sort it? Oh and add to that the fact you have a time pressure and no computer, some good old fashioned paper and pen programming.

Pretty tough for an interview.

BTW yes i got the job, no my solution wasn't optimal. The solution here was that there was not a perfect answer, it was to find out how i think and isnt that what an interview should really be about?

link|flag
vote up 1 vote down

I got asked to explain what virtual inheritance is in C++.

I wish I'd asked for a piece of paper and a pen, because its a tricky one to describe without a diagram. The best thing was, I got the impression that the interviewer didn't know the answer and was shocked I did. I think he was trying to ask it as one of those impossible questions where you're supposed to answer by saying "I'd have to google for that".

link|flag
vote up 0 vote down

Given an array of integers, write a program to find the sub-array with the largest sum

My solution O(n):


function [best, best_st, best_en] = greatest_sum(A)
total=0;best=0;besti = -inf;
besti_ind = 0;best_st = 1;
best_en = 0;best_st_rest = 0;

for i = 1:length(A)
    total = total + A(i);
    if total > best
        best = total;
        best_en=i;
        if best_st_rest > 0
            best_st = best_st_rest;
            best_st_rest = 0;
        end

    elseif total < 0
        total = 0;
        best_st_rest = i+1;
    end

if A(i) > besti
    besti = A(i);
    besti_ind = i;
end

end

if best <=0 best = besti; best_st = besti_ind; best_en = besti_ind ; end end

The Algo is implemented in Matlab

link|flag

Your Answer

Get an OpenID
or

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