linkedin Skip to Main Content
Just announced: We now support interviewing in spreadsheets!
Back to blog

2 Helpful Interview Questions to Ask Your Backend Engineering Candidates

Interviewing

As businesses aim to attract elite tech professionals, the journey to discover skilled back-end developers is both exciting and challenging. All too frequently, identifying or evaluating the ideal candidate proves tough.

According to the latest findings from our 2023 State of Tech Hiring survey, back-end developers not only rank as THE most sought-after job role for recruiters but they are also anticipated to be the 2nd most challenging positions to fill.

What job roles are recruiters looking to fill right now?

Consequently, filling these roles will consume a significant amount of time and financial resources. To avoid wasting valuable time and money, it is crucial to ensure that you make the right hiring decisions when selecting a back-end developer for your company. Repeating the hiring process multiple times is far from a wise use of your limited time and resources.

Therefore, to identify and hire the most suitable back-end developer, it is essential to evaluate their back-end skills thoroughly – for instance, skills like processing form input and communicating with data-enriching microservices through API calls. 

In addition, an understanding of web application architecture and expertise in HTTP/Rest protocols are equally important, taking into account your company’s applications, databases, and web storage requirements.

One of the most effective methods to evaluate these essential skills in potential candidates is to conduct collaborative coding exercises in a realistic environment. Thus, developing well-crafted technical interview questions becomes a vital aspect of the interview process that deserves special attention.

In this article, we will explore two interview questions specifically designed for assessing back-end developers. 

✅ Although the questions samples below are presented with specific programming languages – Node.js in this case – we also offer them in Django, Rails, and Spring. Alternatively, you can adapt them to align with your own technical stack and needs. 

Question 1: Shopping List

This question tests a candidate’s ability to create model(s) for the data structure, insert hard-coded data into a database, modify tables and fields in a database, and write endpoints to interact with data.

Part 1

Create a model for the shopping lists and items located in app/data/data.ts.

Part 2

Store the shopping lists and items located in app/data/data.ts in the database.

Part 3

Modify the database such that a price field can be stored for each item.

Part 4

Multiply the quantity of each item in the shopping lists by two.

Part 5

Create API endpoints to dynamically get a list of shopping lists and items.

Assessing the candidate

The candidate should create models for a shopping list and items. They should then write code to create the tables necessary and insert the data into the tables. Additionally, the candidate can be asked to edit the data in the tables and add additional fields. Finally, endpoints to interact with the data can be created.

Question 2: Galaxy Data Ingestion and Planetary API Server

This question tests the candidate’s ability to fetch data from a GraphQL source, create model(s) for the data structure, and write CRUD endpoints to interact with data.

Here are the instructions for the candidate:

The goal of this exercise is to retrieve data from an external source, store it in an appropriate database structure, and create a CRUD RESTful API to interface with the database.

Goals

1. Read the data from this GraphQL endpoint — https://swapi-graphql.netlify.app/.netlify/functions/index — with the following query:

query Query {allPlanets{planets{name population terrains climates}}}

(You can view the shape of the data here.)

2. Store the data from the GraphQL endpoint in the database and create appropriate models

3. Write RESTful Create, Read, Update, and Delete endpoints to interact with the database

Assessing the candidate

The candidate should create a model to represent a Planet entity, a way to load the data from the GraphQL endpoint to the database, and REST endpoints to do CRUD operations (get, put, post, delete).

More interview resources

Evaluating developers goes beyond assessing their technical prowess. To better gauge their suitability for your team, consider exploring our additional interview guides listed in the Related Posts below.