Can You Solve These Challenging Job Interview Questions?

  • Thread starter Thread starter daigo
  • Start date Start date
  • Tags Tags
    Interview
Click For Summary

Discussion Overview

The discussion revolves around a series of challenging job interview questions, primarily focused on mathematics, probability, algorithms, and logical reasoning. Participants share their thoughts on the difficulty of the questions, their personal experiences with similar interviews, and the appropriateness of the questions for job candidates in various fields.

Discussion Character

  • Debate/contested
  • Exploratory
  • Technical explanation
  • Conceptual clarification
  • Homework-related

Main Points Raised

  • Some participants express curiosity about the type of job for which the interview questions were designed.
  • There is a concern about the ethics of sharing interview questions, with some suggesting caution in providing answers.
  • Participants mention the concept of "Fermi questions" and discuss the importance of estimation processes rather than just the answers.
  • One participant shares a potential solution for simulating probabilities using a fair coin, while others explore variations of this approach.
  • Some participants reflect on their ability to answer the questions, with varying degrees of confidence and uncertainty regarding specific problems.
  • There is a discussion about the nature of the questions, with some being perceived as trivial while others are considered more complex.
  • One participant describes an algorithm for the robot meeting problem, while others critique or suggest alternative strategies.

Areas of Agreement / Disagreement

Participants do not reach a consensus on the appropriateness of the questions or the best approaches to answering them. There are multiple competing views on the difficulty and relevance of the questions, as well as differing opinions on how to tackle specific problems.

Contextual Notes

Some questions remain unresolved, and participants express uncertainty about their answers. The discussion includes various assumptions and interpretations of the questions, which may affect the proposed solutions.

Who May Find This Useful

Individuals preparing for job interviews in fields related to mathematics, finance, computer science, and logical reasoning may find this discussion relevant.

daigo
Messages
27
Reaction score
0
These came up for a job interview and they had to be answered relatively quickly (most of them should be answered within one minute):

1) Prove the Law of Cosines (For any triangle: a^2=b^2 + c^2 - 2abcos(theta))

2) How much would you pay to play this game: You roll a die and are paid whatever amount comes up on the die. You are allowed to roll again if the number is 4 or above. You do not get to roll again if the number is 3 or below.

3) Give an algorithm to test if a number is prime in time better than O(n)

4) If you pick two numbers between 0 and 1, what is the probability that the product of those two numbers will be greater than .5

5) If you have a fair coin and want to simulate an event that has probability 1/3 and probability 2/3, how can you do that?

6) You have two robots placed randomly on the number line. When they land, they place a marker. You are to program the robots so that they meet, and you are given the following 3 commands: Go left, go right, or if you are on a marker, change strategy. Specify the two strategies so that the robots eventually meet.

7) Give an algorithm to reverse the order of the letters of each word in a sentence. Do not change the order of the words. For instance if your sentence is "I like cookies", this algorithm should return "I ekil seikooc"

8) What is happening in Greece? What countries are in trouble? Why is the Republic of Ireland in trouble? Why are the rest of the countries in trouble? Why do all the european banks have so much Greek debt?

9) There is a 5 game series, and you would like to bet on the outcome of the series. You have 100 dollars. If your team wins, you want to get 200 dollars at the end of the series, if they lose you want 0. The problem is that you can only bet on each individual game. How do you bet on each game?

10) You have a 6 barrel revolver with 2 bullets in it, placed side by side. You are going to play Russian Roulette. You play once and don't die. Do you spin the barrel again and then pull the trigger, or do you just pull the trigger?

11) You have two options. One has a strike price of 1300, one has a strike price of 1400. Which is cheaper and why?

12) What parameters would you need to price an option?

How many could you answer and how quickly?
 
Physics news on Phys.org
Wow. What kind of job was it?
 
What kind of job was this for? How do you have a copy of the test? When I've taken employment tests, you were not allowed to take anything with you so that it can't be given out.
 
I just picked a few low hanging fruit.
2) 3.5 because the rule that makes you stop playing has no effect on the expected value.

7) While there are input letters take an input letter and see if it is a space. If it is not a space, put it into a LIFO queue. If it is a space, then take the letters off of the LIFO queue one at a time and print them, then print the space. When there are no more letters, take the letters off of the LIFO queue one at a time and print them. Stop.

10) Spin the barrel again for a 2/3 chance of surviving. If you pull the trigger without spinning you will have a 1/2 chance of surviving.

11) 1400 is cheaper because you subtract the strike price from the sale price to determine the value.

12) This one is weird. Options sell in a market that is independent of their underlying securities. However, in general, there is some correlation to: The underlying security, the strike price and the expiration date.
 
The OP is a student, I'd be careful about giving answers.
 
Evo said:
What kind of job was this for? How do you have a copy of the test? When I've taken employment tests, you were not allowed to take anything with you so that it can't be given out.
FIG @ GS, memory
Evo said:
The OP is a student, I'd be careful about giving answers.
Didn't ask for solutions, just wanted to discuss the aspects of getting jobs at these types of firms.

Here's some others asked at another company:

How many ridges are on a quarter?
How many libraries are in the U.S.?
How many traffic lights are in Manhattan?
Rank yourself from 1-10, 10 being the best in the following 5 qualities. The total cannot be greater than 35: Intellect, teamwork, communication, finance, attitude
 
daigo said:
Here's some others asked at another company:

How many ridges are on a quarter?
How many libraries are in the U.S.?
How many traffic lights are in Manhattan?

Physicists know this kind of question as "Fermi questions," after Enrico Fermi who liked to spring them on his students. The point is not the actual question or answer, but rather the process that you use to estimate an answer, within an order of magnitude or so.

A classic Fermi question is "How many piano tuners are there in Chicago?"
 
I wouldn't work there. I'd rather work somewhere they ask you easy questions - like, "How high can you count on your fingers and toes?" Except I'd need a slide rule to even answer that question.

Actually, some of these are easy; some I'd at least know how I wanted to start them, but would need to think about them for a few to refine my answer (the robot question, for example), and I wouldn't have a clue about #11 or #12. Plus, I couldn't answer #5, but at least I knew that immediately.
 
daigo said:
FIG @ GS, memory

FIG? Does that stand for Fortress Investment Group?...
 
  • #10
daigo said:
These came up for a job interview and they had to be answered relatively quickly (most of them should be answered within one minute):

How many could you answer and how quickly?
From the math, probability, economis and financial questions and terms, I'd imagine this was a financial services company.
 
  • #11
Well, I wouldn't qualify, but I like the questions. #5 is interesting, for example. Best I could come up with that with a fair coin you can chose between four things A,B,C, and D. So you flip until you hit either an A, or a B or C. So it has an answer as a limit. Can it be done easier?
 
  • #12
MarcoD said:
Well, I wouldn't qualify, but I like the questions. #5 is interesting, for example. Best I could come up with that with a fair coin you can chose between four things A,B,C, and D. So you flip until you hit either an A, or a B or C. So it has an answer as a limit. Can it be done easier?

With enough coin flips, you could get close to 1/3 and 2/3 by merging several possible results into one category (4 heads & 3 heads out of 4 flips, for example), but it's impossible to get an exact multiple of 3 using only powers of 2.
 
  • #13
BobG said:
With enough coin flips, you could get close to 1/3 and 2/3 by merging several possible results into one category (4 heads & 3 heads out of 4 flips, for example), but it's impossible to get an exact multiple of 3 using only powers of 2.

Yeah, I had the same conclusion. The answer has to be a 'limit.'
 
  • #14
MarcoD said:
Yeah, I had the same conclusion. The answer has to be a 'limit.'
No, just flip twice, 2 heads is A, 1 head, 1 tail is B, 0 heads is ignored.
 
  • #15
Jimmy Snyder said:
No, just flip twice, 2 heads is A, 1 head, 1 tails is B, 0 heads is ignored.

That's the same answer as I gave. (Chose between A,B,C and D with chance 1/4, but try again on D. )
 
  • #16
Clearly, you use the coin to buy a 2/3-headed coin.
 
  • #17
What about #2? Very sloppily I came up with less than 7, but I am very unsure about it.
 
Last edited by a moderator:
  • #18
Astronuc said:
From the math, probability, economis and financial questions and terms, I'd imagine this was a financial services company.

I googled it. One of the questions is supposedly from a Goldman Sachs interview (according to google).
 
  • #19
Does #9 have a solution?
 
  • #20
These are typical google/facebook interviews.

I was successfully able to answer question #6 in one of my interviews.
6) You have two robots placed randomly on the number line. When they land, they place a marker. You are to program the robots so that they meet, and you are given the following 3 commands: Go left, go right, or if you are on a marker, change strategy. Specify the two strategies so that the robots eventually meet.

while(!markerSet) {

go left;
go left;
go right;
set marker;
};
while(!peerFound) {
go left;
}

7) Give an algorithm to reverse the order of the letters of each word in a sentence. Do not change the order of the words. For instance if your sentence is "I like cookies", this algorithm should return "I ekil seikooc"

for(c=each character in the string) {
if (c == NULL || c == 'space') {
while (!stackEmpty)) {
print(pop(stack));
}
}
if (c == NULL) {
break;
} else {
push(stack, c);
}
}
 
Last edited:
  • #21
Yeah, these I found trivial. I didn't bother about them. And I didn't bother about #1 though I don't know the answer by heart.

I don't believe you got the right answers though. The #6 should be something like 'forall n: do n steps left, retreat, do n steps right, retreat' But the question is underspecified, you need to know that the robots take alternate turns.

The #7 is easy too. Should be something like: 'split on space, reverse the words, concatenate the result.' You didn't do anything that resembles that.
 
Last edited by a moderator:
  • #22
MarcoD said:
I don't believe you got the right answers though. The #6 should be something like 'forall n: do n steps left, retreat, do n steps right, retreat' But the question is underspecified, you need to know that the robots take alternate turns.

My answer is correct.

The logic is,
Move slow (left,left, right) in one direction until you find a marker set. And while moving, set the marker.

Once you find the marker set (that means, the other robot has visited this spot), move faster (continuous left), so you would eventually meet the other robot that is moving slower (left, left, right).
The #9 is easy too. Should be something like: 'split on space, reverse the words, concatenate the result.' You didn't do anything that resembles that.

I didn't expand the push() and pop(). Look for stack data structures.
 
  • #23
I could do four of them for sure, and I could take a pretty good stab at about another three of them. Only having a minute each would be trouble, because I don't always think that quickly.
 
  • #24
Oh, I understood that both robots drop a marker where they are dropped. My answer would work too. Now I look at it more closely, hmm, I guess you can't do something n times, so you're answer is better.

Hmm, I'll look at it again.
 
Last edited by a moderator:
  • #25
Jack21222 said:
I could do four of them for sure, and I could take a pretty good stab at about another three of them. Only having a minute each would be trouble, because I don't always think that quickly.

The only interesting for me was #9 I think. (But I didn't really bother doing most of them under a minute.)
 
  • #26
Ah, I was afk for a moment. The trivial answer is 'walk left until you hit a marker, then double your speed.' Which is your answer. ;-) Ah well.
 
Last edited by a moderator:
  • #27
I am still annoyed about #9. I have the feeling it can't have a solution, but I am not sure why or how to prove it. Anyone?
 
  • #28
Jimmy Snyder said:
I just picked a few low hanging fruit.
2) 3.5 because the rule that makes you stop playing has no effect on the expected value.

7) While there are input letters take an input letter and see if it is a space. If it is not a space, put it into a LIFO queue. If it is a space, then take the letters off of the LIFO queue one at a time and print them, then print the space. When there are no more letters, take the letters off of the LIFO queue one at a time and print them. Stop.

10) Spin the barrel again for a 2/3 chance of surviving. If you pull the trigger without spinning you will have a 1/2 chance of surviving.

11) 1400 is cheaper because you subtract the strike price from the sale price to determine the value.

12) This one is weird. Options sell in a market that is independent of their underlying securities. However, in general, there is some correlation to: The underlying security, the strike price and the expiration date.
Since people are trying to find answers, I'm restoring Jimmy's early post.
 
  • #29
#2 from Jimmy I think is wrong. The expected value, I guessed, is: chance you get to the 1st throw * expected return on the 1st throw + chance you get to the 2nd throw * expected return on the 2nd throw + ... = 1.0 * 3.5 + 0.5 * 3.5 + 0.25 * 3.5 + ... = 7.

(Difference is that I read the question as if you get a return on each throw.)

(Hmm, I guess it's Jimmies interpretation? Which means 3.5 since it doesn't make sense to role a dice again if you got a better result than the expectancy?)
 
Last edited by a moderator:
  • #30
#10 from Jimmy is wrong I think. Spin the barrel for a 1/3 chance of dying, and pull the trigger for a 1/4 chance of dying. So you pull the trigger.
 

Similar threads

  • · Replies 27 ·
Replies
27
Views
4K
Replies
127
Views
23K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 6 ·
Replies
6
Views
4K
Replies
2
Views
2K
  • · Replies 29 ·
Replies
29
Views
2K
  • · Replies 13 ·
Replies
13
Views
6K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 11 ·
Replies
11
Views
4K
  • · Replies 4 ·
Replies
4
Views
2K