HomeBooksDigital GardenStoreContact

How to be successful at interviews

Note: This is a Work In Progress article. In here, I will write about my experiences and lessons learned while interviewing for a tech job.
Last Updated: 26 August 2020

The aim of this article is to gather every piece of advice that I have read/received on how to be successful at tech interviews. I will also share my experiences whilst interviewing for a developer position and share with you the mistakes that I have done, so you don't do them yourself.

Screening

To get an interview, first, you need to have a CV good enough to make the person reading your CV want to call you.

The best piece of advice that I have received was from Jacob Tomlinson. He said that I should structure my CV in the same way as the job requirements that I am applying.

For example, if the company is looking for a Python developer that has experience with open source. You will put first your experience of contributing to Open Source Python Projects.

Also, show results and not actions. For example, instead of saying:

Wrote code to integrate x with y

You should write

Wrote code to integrate with y that brought a speed performance of z %.

First interview

The first interview is usually a phone screening interview. On this stage, you should read EVERYTHING about the company. Study the website, read news about the company, do research, so when you are on the phone, you can mention things that the company does/did.

Doing your research will also allow you to know what the company wants. On the interview, you can relate your experiences to the company needs.

For example, if a company says that they are looking for someone that is not afraid of working with minimal information. You can mention times where you had to code something without knowing how things work because the documentation was lacking.

You should also sound excited about the opportunity and eager to work there.

Live code challenge interview

This step is probably the most stressful. My experience so far has been a pleasant one. The interviewer was happy to help me through some issues.

Usually this step, you have an interview with someone from the team that you will be working on, there will be a quick chat about the work and what is expected, of you, then a code challenge.

The one piece of advice I have for this stage is:

Read the notes/problem properly and think it thought before jumping into the code!

If you aren't great at coding challenges, then you could spend some time doing code challenges, since this is all about practice.

Tips

  • Read the notes/problem properly
  • Think it through
  • Ask for clarification
  • Talk about assumptions and ask the interviewer if you are correct
  • Talk about how you could solve the challenge
  • Code the thing
  • Talk about how to improve the code
  • Talk about how to test the code
  • Think about edge cases

Depending on the role that you are applying for, you might be asked, about Big O notation. You might also have to do a code challenge about algorithms or where using a specific algorithm might be the right answer. Knowing the basic ones will be useful.