Grab is a leading technology company in Southeast Asia, offering a wide range of services, such as ride-hailing, food delivery, and digital payments. Its mission is to drive economic empowerment through innovative solutions and services.
The Software Engineer position at Grab is a highly competitive role that focuses on tackling large-scale challenges. The interviews test your coding skills, problem-solving abilities, and system design knowledge.
In this guide, we will provide an in-depth look at the interview process, common Grab software engineer interview questions, and preparation tips to help you secure this position at Grab. Let’s get started!
If your resume makes the cut, a recruiter from Grab’s Talent Acquisition Team will contact you to verify essential details about your experience and skill level. Behavioral questions may also be part of the screening process.
Occasionally, the hiring manager might participate in the screening round to answer any questions you have about the role and the company. They may also engage in surface-level technical and behavioral discussions.
Depending on the feedback from the recruiter screening, you might be invited to take an online coding assessment. This assessment often involves solving algorithmic problems on platforms like InterviewQuery,
Example: - Solve 2-3 algorithm-based problems within a set time (usually 70-120 minutes). - Questions typically include tasks like string manipulation, data structures, and dynamic programming.
Successfully passing the coding assessment leads to the technical virtual interview phase. This stage generally involves multiple rounds of coding interviews followed by a system design round.
Example Rounds: 1. First Coding Round: Medium-level questions focusing on data structures and algorithms (e.g., linked lists, arrays). 2. Second Coding Round: More complex algorithmic problems or live coding. 3. System Design Round: Discussing system architecture, APIs, and infrastructure design. 4. Behavioral and Technical Discussion with Hiring Manager: In-depth discussion on your past projects, career aspirations, and technical profundity.
Some roles might require an onsite interview, where candidates undergo a series of technical and behavioral interviews at the Grab office. These rounds assess your overall fit, including your technical skills, problem-solving abilities, and cultural alignment with the company.
Typically, interviews at Grab vary by role and team, but commonly software engineer interviews follow a fairly standardized process across these question topics.
find_bigrams
to return a list of all bigrams in a sentence.Write a function called find_bigrams
that takes a sentence or paragraph of strings and returns a list of all its bigrams in order. A bigram is a pair of consecutive words.
Given a table of bank transactions with columns id
, transaction_value
, and created_at
, write a query to get the last transaction for each day. The output should include the id, datetime, and transaction amount, ordered by datetime.
find_change
to find the minimum number of coins for a given amount.Write a function find_change
to find the minimum number of coins that make up the given amount of change cents
. Assume we only have coins of value 1, 5, 10, and 25 cents.
Write a function to simulate drawing balls from a jar. The colors of the balls are stored in a list named jar
, with corresponding counts of the balls stored in the same index in a list called n_balls
.
calculate_rmse
to compute the root mean squared error of a regression model.Write a function calculate_rmse
to calculate the root mean squared error of a regression model. The function should take in two lists, one that represents the predictions y_pred
and another with the target values y_true
.
Explain the key differences between Lasso and Ridge Regression, focusing on their regularization techniques and how they handle coefficients.
Identify the type of model used for determining loan approval based on customer inputs.
Since personal loans are monthly installments, describe how you would measure the difference between two credit risk models over a specific timeframe.
List and explain the metrics you would use to evaluate the performance and success of a new credit risk model.
Describe the criteria and methods you would use to determine if a decision tree algorithm is appropriate for predicting loan repayment.
Explain the steps and metrics you would use to assess the performance of a decision tree model both before deployment and after it is in use.
Describe the process by which a random forest algorithm generates its forest and explain its advantages over logistic regression.
Explain the interpretation of logistic regression coefficients when dealing with categorical and boolean variables.
To determine if Uber Eats has a net positive value for Uber, identify key performance indicators (KPIs) such as revenue growth, customer acquisition and retention rates, market share, profitability, and customer satisfaction. Analyze these metrics to assess the overall impact of Uber Eats on Uber’s business.
Create a function that takes the number of tosses and the probability of heads as input and returns a list of randomly generated results (‘H’ for heads, ’T’ for tails).
Example 1:
tosses = 5
probability_of_heads = 0.6
Output:
coin_toss(tosses, probability_of_heads) -> ['H', 'T', 'H', 'H', 'T']
Example 2:
tosses = 3
probability_of_heads = 0.2
Output:
coin_toss(tosses, probability_of_heads) -> ['T', 'T', 'T']
Create a function that takes a list of integers and returns the sample variance, rounded to 2 decimal places.
Example:
test_list = [6, 7, 3, 9, 10, 15]
Output:
get_variance(test_list) -> 13.89
Given that the probability of item X being available at warehouse A is 0.6 and at warehouse B is 0.8, calculate the probability that item X would be found on Amazon’s website.
Here are some quick tips for your upcoming Grab software engineer interview:
Average Base Salary
Average Total Compensation
Experiences vary; some candidates have reported highly positive interactions with supportive interviewers who guide them through the problems. However, others have cited issues such as scheduling mishaps and inadequate communication from the recruitment team. Be prepared for both possibilities.
At Grab, the company culture is driven by the 4Hs: Heart, Hunger, Honour, and Humility. Employees are encouraged to adhere to these principles as they work towards Grab’s mission of economic empowerment in Southeast Asia. Collaboration and innovation are highly emphasized within the organization.
While the interview process can be rigorous and occasionally flawed, with some reports of scheduling issues and unprofessionalism, others have found the experience to be supportive and enriching. Prepare by polishing your skills and understanding core computer science concepts.
For more support and insights into navigating the interview landscape at Grab, check out our comprehensive guides at Interview Query, where we provide you with the tools and confidence to excel. Dive into our expert-crafted resources, and don’t hesitate to reach out with any questions.
Good luck with your interview!