A job interview is also you judging the company and people you’re applying to join. If you feel the team lead can’t handle you answering questions honestly because it might reveal one of his or her blind spots, that’s not a great sign.
Ironic, as I almost always interview for the opposite. I don't really care what you currently know because software development paradigms can be learned with relative ease for a motivated and intelligent individual who already knows something. So instead I: 1) Poke around their CV/Resume. Just ensuring that they have the stuff they say to a basic level (some people just spam keywords) 2) Get them to a point where the…
I had to give a wrong answer to get the job (2017)
111–120 of 409 posts
Re: I had to give a wrong answer to get the job (2017)
#112Earlier quoted context omitted.
I was taking a firearms safety course and there was a true/false section on a test. I can’t recall what the question was specifically but it was about which laws something fell under and the main issue was the word ‘or’ - when used as a logical OR the answer was True. When used as a sort of common day ‘or’ the answer was probably false. I put false without thinking. I had everything else on the test right and part of…
What other meaning of the word "or" is there?
On a test for a gun license, it could get a little squishy as there are likely questions about the law (which only sometimes aligns with common sense) translated into lay English (which lacks the degree of precision you would likely find in the actual legal phrasing).
From Reddit ELI5:
"Cream or Sugar, in coffee is OR it means one the other or both
Fish or Chicken, for dinner is XOR it means one or the other not both."
https://www.reddit.com/r/explainlikeimfive/comments/4v6dcd/c...
Re: I had to give a wrong answer to get the job (2017)
#113I was once in this position, but decided to continue through with the "right" answer anyway. Even though the interviewer was adamant that he was right (as, of course, was I), we briefly stopped the interview and made some Google searches to get to the truth. I could ostensibly argue that I got the job not by telling the interviewer what he wanted to hear, but by doubling down on the right answer and showing that I ha…
Re: I had to give a wrong answer to get the job (2017)
#114Earlier quoted context omitted.
And giving a response like this is still a good indication of people skills -- Do you know how to present a controversial opinion in a way that encourages people to accept it, or do you ram it down people's throats?
Yeah I think this is way overblown- The way to approach this is "Well typically MVC is presented as such and people think its represented in typical architectures as blah blah blah, but from an actual theory perspective what actually happens is that blah blah blah..." You cover both bases, give the blogspam answer that most view is the "right" one, but also show that you have a much deeper understanding. My favorite…
And there are essentially always nuances. So that's not really a controversial statement. At which point, the tech lead can accept the answer as pretty much what they were looking for or can probe further if it's actually the nuances they're interested in.
Re: I had to give a wrong answer to get the job (2017)
#115Earlier quoted context omitted.
What other meaning of the word "or" is there?
In common usage, "or" is usually taken to mean exclusive or (XOR). Logical OR is non-exclusive. In most cases you can infer which is meant from context or it doesn't actually matter (much). On a test for a gun license, it could get a little squishy as there are likely questions about the law (which only sometimes aligns with common sense) translated into lay English (which lacks the degree of precision you would like…
Most cases where "or" is taken to mean xor are actually asking for a choice, expecting one of the options as an answer. If the "or" is part of a question expecting a yes/no answer, then it is much harder to justify it being an xor.
Re: I had to give a wrong answer to get the job (2017)
#116Re: I had to give a wrong answer to get the job (2017)
#117Earlier quoted context omitted.
What other meaning of the word "or" is there?
In common usage, "or" is usually taken to mean exclusive or (XOR). Logical OR is non-exclusive. In most cases you can infer which is meant from context or it doesn't actually matter (much). On a test for a gun license, it could get a little squishy as there are likely questions about the law (which only sometimes aligns with common sense) translated into lay English (which lacks the degree of precision you would like…
Re: I had to give a wrong answer to get the job (2017)
#118I did not get a callback.
Re: I had to give a wrong answer to get the job (2017)
#119One thing this reminds me of is the use of "Compute the nth Fibonacci number" as an interview question. The interviewer may expect you to show off your knowledge of dynamic programming by memoizing the function. But you take a risk if you implement the matrix exponentiation algorithm [1], which is actually optimal in that it only uses O(log(n)) arithmetic operations. I had an interviewer once who seemed a bit skeptic…
Re: I had to give a wrong answer to get the job (2017)
#120One thing this reminds me of is the use of "Compute the nth Fibonacci number" as an interview question. The interviewer may expect you to show off your knowledge of dynamic programming by memoizing the function. But you take a risk if you implement the matrix exponentiation algorithm [1], which is actually optimal in that it only uses O(log(n)) arithmetic operations. I had an interviewer once who seemed a bit skeptic…