Tagged Questions
Interview questions are a form of query where the interviewer tries to produce a question that the interviewee will answer in a way that helps identify their competencies.
437
votes
100answers
26k views
Interview question: f(f(n)) == -n [closed]
A question I got on my last interview:
Design a function f, such that:
f(f(n)) == -n
Where n is a 32 bit signed integer; you can't use complex numbers arithmetic.
If you can't design ...
423
votes
0answers
25k views
Really “wow” them in the interview [migrated]
Let me put it to you this way: I'm a top-notch programmer, but a notoriously bad interviewee.
I've flunked 3 interviews consecutively because I get so nervous that my voice tightens at least 2 ...
325
votes
107answers
153k views
Printing 1 to 1000 without loop or conditionals [closed]
Task: Print numbers from 1 to 1000 without using any loop or conditional statements. Don't just write the printf() or cout statement 1000 times.
How would you do that using C or C++?
317
votes
32answers
52k views
Creating a memory leak with Java
I just had an interview, and I was asked to create a memory leak with Java.
Needless to say I felt pretty dumb having no clue on how to even start creating one.
What would an example be?
284
votes
33answers
49k views
Find an integer not among four billion given ones
It is an interview question:
Given an input file with four billion integers, provide an algorithm to generate an integer which is not contained in the file. Assume you have 1 GB memory. ...
247
votes
26answers
30k views
Questions every good .NET developer should be able to answer? [closed]
My company is about to hire .NET developers. We work on a variety of .NET platforms: ASP.NET, Compact Framework, Windowsforms, Web Services. I'd like to compile a list/catalog of good questions, a ...
235
votes
27answers
24k views
Interview question: Check if one string is a rotation of other string [closed]
A friend of mine was asked the following question today at interview for the position of software developer:
Given two string s1 and s2 how will you check if s1 is a rotated version of s2 ?
Example: ...
220
votes
51answers
33k views
Expand a random range from 1-5 to 1-7
Given a function which produces a random integer in the range 1 to 5, write a function which produces a random integer in the range 1 to 7.
What is a simple solution?
What is an effective solution ...
215
votes
62answers
186k views
Good C# Interview Questions for a Senior Dev Position [closed]
I know there have been a great deal of interview questions posted on SO, however I wondered what sort of questions people here ask at C# interviews, interviewing for a senior developer position.
In ...
209
votes
55answers
42k views
Check if at least 2 out of 3 booleans is true
An interviewer recently asked me this question: given 3 boolean variables a, b, c, return true if at least 2 out of the 3 are true.
My solution follows:
boolean atLeastTwo(boolean a, boolean b, ...
187
votes
19answers
18k views
Easy interview question got harder: given numbers 1..100, find the missing number(s)
I had an interesting job interview experience a while back. The question started really easy:
Q1: We have a bag containing numbers 1, 2, 3, …, 100. Each number appears exactly once, so there are ...
136
votes
17answers
53k views
Overriding equals and hashCode in Java
What issues / pitfalls must be considered when overriding equals and hashCode?
131
votes
36answers
19k views
Questions every good Java/J2EE Developer should be able to answer? [closed]
I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question, and so in the same spirit, I am asking this ...
121
votes
36answers
10k views
Tricky Algorithm Interview Question [closed]
Possible Duplicate:
Algorithm: How to tell if an array is a permutation in O(n)?
I was asked this interview question at Microsoft, and it's been bugging me that I haven't been able to solve ...
115
votes
15answers
6k views
Hello world in C with no semi-colons?
I recently heard this was used as an interview question. I suspect there is a very simple answer; I must be over-thinking it.
Can you write Hello World in C without
using any semi-colons? If ...
106
votes
23answers
37k views
Interview questions: WPF Developer [closed]
What should every WPF developer know?
Entry Level
Strong .NET 2.0 Background & willing to learn!
Explain dependency properties?
What's a style?
What's a template?
Binding
Differences between ...
105
votes
26answers
5k views
Identifying passionate programmers [closed]
I'm hiring a programmer, how can I differentiate the good programmers from those good programmers who have a real passion for their work ?
94
votes
34answers
8k views
Job Interview questions - The ones you should ask the company [closed]
I am sure there are lots of people who ask the question, "What have you been asked at interview?".
I want to turn this on its head and ask the community what question do you wish you had asked the ...
87
votes
9answers
6k views
What questions should a JavaScript programmer be able to answer?
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 ...
87
votes
9answers
27k views
Solve the memory alignment in C interview question that stumped me
I just finished a test as part of a job interview, and one question stumped me - even using google for reference. I'd like to see what the stackoverflow crew can do with it:
The “memset_16aligned” ...
81
votes
25answers
6k views
Best algorithm for this interview problem
Given a NxN matrix with 0s and 1s. Set every row that contains a 0 to all 0s and set every column that contains a 0 to all 0s.
For example
1 0 1 1 0
0 1 1 1 0
1 1 1 1 1
1 0 1 1 1
1 1 1 1 1
...
80
votes
16answers
59k views
Google Interview Questions [closed]
I am preparing for an interview with Google (Mountain View) I was wondering if anybody could share some of the questions and experiences.
I have been told that they ask both brain teasers and ...
75
votes
18answers
15k views
Which one will execute faster, if (flag==0) or if (0==flag)?
Interview question: Which one will execute faster, if (flag==0) or if (0==flag)? Why?
73
votes
16answers
6k views
Interview question: How to detect a loop in a linked list?
Say you have a linked list structure in Java. It's made up of Nodes:
class Node {
Node next;
// some user data
}
and each Node points to the next node, except for the last Node, which has ...
72
votes
13answers
5k views
Tricky Google interview question
A friend of mine is interviewing for a job. One of the interview questions got me thinking, just wanted some feedback.
There are 2 non-negative integers: i and j. Given the following equation, find ...
71
votes
9answers
3k views
Maximum number of characters using keystrokes A, Ctrl+A, Ctrl+C and Ctrl+V
This is an interview question from google. I am not able to solve it by myself. Can somebody shed some light?
Write a program to print the sequence of keystrokes such that it generates the maximum ...
70
votes
4answers
3k views
Why does this code crash?
I went to a job interview today and was given this interesting question.
Besides the memory leak and the fact there is no virtual dtor, why does this code crash?
#include <iostream>
//besides ...
69
votes
41answers
5k views
Should entry level programmers be able to answer FizzBuzz? [closed]
When interviewing entry level developers, I have used the FizzBuzz question as a type of acid test. Generally, I ask for a solution in pseudo-code or any language of their choice. If someone can't ...
66
votes
9answers
3k views
How to drive C#, C++ or Java compiler to compute 1+2+3+…+1000?
In a recent interview, I was asked a really strange question. The interviewer asked me how can I compute 1+2+3+...+1000 just using compiler features. This means that I am not allowed to write a ...
66
votes
8answers
2k views
In which order should floats be added to get the most precise result?
This was a question I was asked at my recent interview and I want to know (I don't actually remember the theory of the numerical analysis, so please help me :)
If we have some function, which ...
66
votes
37answers
5k views
What questions should every good JavaScript developer be able to answer? [closed]
Possible Duplicate:
What questions should a JavaScript programmer be able to answer?
I was going through Questions every good .Net developer should be able to answer and was highly ...
65
votes
13answers
3k views
Most efficient way to store thousand telephone numbers
This is a google interview question:
There are around thousand phone numbers to be stored each having 10 digits. You can assume first 5 digits of each to be same across thousand numbers. You have to ...
63
votes
19answers
24k views
Interview programming test practice [closed]
Does anyone know of some good resources for practice coding questions typically asked in interviews. I know of topcoder.com which is kind of fun to use to exercise your algorithms. And I have seen the ...
62
votes
24answers
4k views
How do you know it's good code - Interview Question
During a phone interview someone asked the question, "When looking at code, what's the first thing that stands out to let you know it's from a good/experienced developer?"
I believe my answer was ...
60
votes
22answers
5k views
Questions every good Database/SQL developer should be able to answer
I was going through Questions every good .Net developer should be able to answer and was highly impressed with the content and approach of this question and so in the same spirit, I am asking this ...
59
votes
5answers
3k views
“Last 100 bytes” Interview Scenario
I got this question in an interview the other day and would like to know some best possible answers(I did not answer very well haha):
Scenario: There is a webpage that is monitoring the bytes sent ...
56
votes
34answers
9k views
How to weed out the bad programmers from the competent ones in the interview process [closed]
I am getting ready to add another developer to my team and I want to try and fix the mistakes I made in my last hiring cycle.
I like to think of myself as a competent programmer (I can be given a ...
56
votes
88answers
8k views
What's a good non-programming interview question when hiring a programmer? [closed]
What is a good non-programming question to ask a candidate during a job interview?
I'll post my two favorites below, but I'd like to hear others.
Clarification: By "non-programming," I mean you are ...
54
votes
20answers
40k views
Favorite C++ interview question [closed]
What is your favorite C++ interview question? It may be any question, for example:
algorithms,
multithreding,
gamedev area,
low-level system programming,
strings...
52
votes
15answers
3k views
Help with interview question
I was asked this question on in a recent Java telephonic interview:
You are given an NxN binary (0-1) matrix with following properties:
Each row is sorted (sequence of 0's followed by sequence of ...
52
votes
13answers
39k views
Advanced JavaScript Interview Questions [closed]
I have an interview coming up for a JavaScript Engineer position that I expect will be on advanced JavaScript topics. I'm sure there will be questions on closures, but other than that what kinds of ...
49
votes
40answers
5k views
Hiring a programmer: looking for the “right attitude” [closed]
It's actually two questions in one:
What is the right attitude for a programmer?
How do you (or would you) look for one when interviewing or during hiring process?
Please note this question is not ...
48
votes
7answers
3k views
Anagram of a palindrome
I just had a technical job interview and in this process I had to solve this problem:
A string is a palindrome if it has exactly the same sequence of characters when read left-to-right as ...
48
votes
9answers
2k views
Finding duplicates in O(n) time and O(1) space
Input: Given an array of n elements which contains elements from 0 to n-1, with any of these numbers appearing any number of times.
Goal : To find these repeating numbers in O(n) and using only ...
47
votes
14answers
2k views
Should i ask the interviewer if i can speak to other developers? [closed]
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 ...
46
votes
14answers
4k views
Interview Q: given an array of numbers, return array of products of all other numbers (no division)
I was asked this question in a job interview, and I'd like to know how others would solve it. I'm most comfortable with Java, but solutions in other languages are welcome.
Given an array of ...
45
votes
17answers
2k views
One-way flight trip problem
You are going on a one-way indirect flight trip that includes billions an unknown very large number of transfers.
You are not stopping twice in the same airport.
You have 1 ticket for each part of ...
45
votes
15answers
2k views
Asking to see employer's code/database in an interview
I've been asked to write code/design things in an interview. Sometimes even to provide code samples. Very reasonable and very wise (always surprised when this DOESN'T happen)
I had a job a year or ...
45
votes
32answers
5k views
What interview question weeds out 'bad' applicants? [closed]
We have a list of the best interview questions people have been asked and the worst interview question you've been asked but what question do you believe sorts the chaff from the wheat?
One you've ...
43
votes
23answers
2k views
Interview Question, What do they want to accomplish?
I was on a technical job interview today, and it was time to give me some programming exercises.
I finally came to the last question:
Given the numbers:
116 104 105 115 32 105 115 32 99 111 114 114 ...