Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Go-Jek Team. If you also belong to the team, you can get access from here

Go-Jek Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Go-Jek Interview Questions and Answers

Updated 2 Dec 2024

Go-Jek Interview Experiences

Popular Designations

31 interviews found

I applied via Approached by Company and was interviewed before Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

This was a live coding round where the problem statement was shared 15 minutes before the interview. The time duration was 2 hours.
The problem statement was a Driver allocation system. I had to write few APIs such as:
1) take input for source, destination, distance
2) allocate free driver to new booking
3) record driver's

The complete backend app had to be developed for this to make a working code. The database, language was completely free for choosing.
The program had to be developed on the system and code had to be shared on mail later.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Write a code in Go to find kth minumum element from a given list of numbers.
  • Ans. 

    Code in Go to find kth minimum element from a given list of numbers.

    • Sort the list of numbers in ascending order

    • Return the kth element from the sorted list

  • Answered by AI
  • Q2. How do goroutines work internally?
  • Ans. 

    Goroutines are lightweight threads that are managed by Go runtime.

    • Goroutines are created using the 'go' keyword.

    • They are multiplexed onto OS threads by Go runtime.

    • They communicate using channels.

    • They are scheduled cooperatively, not preemptively.

    • They have a small stack size (2KB) compared to OS threads.

    • They are used extensively in Go for concurrency and parallelism.

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design a system for food delivery app like Swiggy. Then questions based on the design.

Interview Preparation Tips

Topics to prepare for Go-Jek Senior Software Engineer interview:
  • Golang
  • Data Structures
  • High level design
Interview preparation tips for other job seekers - Go knowledge has to be really strong for the Round 2

Skills evaluated in this interview

Top Go-Jek Senior Software Engineer Interview Questions and Answers

Q1. Write a code in Go to find kth minumum element from a given list of numbers.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

It was a coding round for a medium level leetcode problem involving hashmaps.

Round 2 - Technical 

(2 Questions)

  • Q1. On the internals of TestNG
  • Q2. The solution for the coding the test
Round 3 - One-on-one 

(1 Question)

  • Q1. Hiring manager round on past experiences and skillset
Round 4 - HR 

(1 Question)

  • Q1. More around compensation, benefits.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, practise medium level leetcode.

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One machine coding round, parking lot question

Round 2 - Technical 

(2 Questions)

  • Q1. Question related to parking lot
  • Q2. Current project related questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. High level design
  • Q2. Yet to appear ......

Top Go-Jek Senior Software Engineer Interview Questions and Answers

Q1. Write a code in Go to find kth minumum element from a given list of numbers.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Implement some LLD and use clean code formulas

Round 2 - Group Discussion 

Better be prepared for all deep dive questions about tech and project you worked

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Go-Jek interview questions for popular designations

 Senior Software Engineer

 (8)

 Software Engineer

 (3)

 Data Scientist

 (2)

 Software Developer

 (2)

 Senior Sdet Engineer

 (2)

 Senior Software Engineer Testing

 (2)

 Production Manager

 (1)

 Technical Lead

 (1)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design a Parking Lot
  • Ans. 

    Design a parking lot system with features like parking, retrieving, and displaying available spots.

    • Create a class for ParkingLot with attributes like total spots, available spots, and a list of parked vehicles.

    • Implement methods for parking a vehicle, retrieving a vehicle, and displaying available spots.

    • Use data structures like arrays or lists to manage parked vehicles and available spots.

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (212)

Senior Sdet Engineer Interview Questions & Answers

user image Nikhar Trivedi

posted on 20 Apr 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Build a framework or to execute already given framework from the company

Round 2 - Coding Test 

Technical and coding

Round 3 - Technical 

(2 Questions)

  • Q1. About testing and scenarios and a program
  • Q2. Convert roman to integers
  • Ans. 

    Convert Roman numerals to integers

    • Create a mapping of Roman numerals to integers

    • Iterate through the input Roman numeral string from right to left

    • If the current numeral is smaller than the one after it, subtract its value from the total, else add its value to the total

  • Answered by AI

Skills evaluated in this interview

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. Optimize an existing system. The system currently makes an API call and stores data in its memory. When it tries to serve a request from another component it refers to the memory location by searching the entire memory.
View answer (1)

Jobs at Go-Jek

View all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Machine coding round, try to come up with at least one working requirement

Round 2 - Technical 

(2 Questions)

  • Q1. Low level design
  • Q2. Cant share the exact quesy
Round 3 - Technical 

(1 Question)

  • Q1. High level design
Round 4 - Technical 

(1 Question)

  • Q1. Hiring manager round

Top Go-Jek Senior Software Engineer Interview Questions and Answers

Q1. Write a code in Go to find kth minumum element from a given list of numbers.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

(1 Question)

  • Q1. Design A ticketinf system.
  • Ans. 

    Design a ticketing system for managing and tracking tickets.

    • Create a user-friendly interface for users to submit tickets.

    • Implement a system for assigning tickets to appropriate teams or individuals.

    • Include a feature for tracking the status of tickets and updating users on progress.

    • Allow for prioritization of tickets based on urgency or impact.

    • Generate reports on ticket resolution times and overall performance.

    • Integrate...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (212)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Solve a system design problem in 1 hour

Round 2 - One-on-one 

(2 Questions)

  • Q1. Search word in a file
  • Ans. 

    Search for a specific word in a file

    • Read the file line by line

    • Check each line for the search word

    • Return the line number if word is found

  • Answered by AI
  • Q2. Design elevator system
  • Ans. 

    Design elevator system for efficient and safe transportation

    • Consider the number of floors in the building

    • Implement algorithms for efficient elevator routing

    • Include safety features such as emergency stop buttons

    • Design user interface for passengers to select floors

    • Utilize sensors for detecting weight and preventing overloading

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (212)
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mathematics, quant and logical

Round 2 - Coding Test 

Leetcode mediums and oa coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - go with confidence.

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Data Analyst Interview Questions & Answers

user image Tanay Batra

posted on 21 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is K means
  • Ans. 

    K-means is a popular clustering algorithm used to partition data points into K clusters based on similarity.

    • K-means aims to minimize the sum of squared distances between data points and their respective cluster centroids.

    • It requires the number of clusters (K) to be specified in advance.

    • The algorithm iteratively assigns data points to the nearest cluster centroid and updates the centroids until convergence.

    • K-means is se...

  • Answered by AI
  • Q2. Type 1 and Type 2 error

Skills evaluated in this interview

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

Go-Jek Interview FAQs

How many rounds are there in Go-Jek interview?
Go-Jek interview process usually has 3-4 rounds. The most common rounds in the Go-Jek interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Go-Jek interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Go-Jek. The most common topics and skills that interviewers at Go-Jek expect are Python, Financial Services, SQL, Agile and Machine Learning.
What are the top questions asked in Go-Jek interview?

Some of the top questions asked at the Go-Jek interview -

  1. Write a code in Go to find kth minumum element from a given list of numbe...read more
  2. Which programming language would you use in which situati...read more
  3. How do goroutines work internal...read more
How long is the Go-Jek interview process?

The duration of Go-Jek interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Go-Jek Interview Process

based on 27 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 572 Interviews
Citicorp Interview Questions
3.7
 • 572 Interviews
Morningstar Interview Questions
3.9
 • 243 Interviews
Mr Cooper Interview Questions
4.0
 • 86 Interviews
Synchrony Interview Questions
4.3
 • 78 Interviews
CSC Interview Questions
3.5
 • 57 Interviews
View all

Go-Jek Reviews and Ratings

based on 113 reviews

3.7/5

Rating in categories

3.4

Skill development

3.9

Work-life balance

3.9

Salary

2.6

Job security

3.6

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 113 Reviews and Ratings
Finance Business Partner

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

SDET (Mobile automation) - Consumer Payment

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

People Operations Specialist

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
92 salaries
unlock blur

₹24.7 L/yr - ₹62 L/yr

Software Engineer
50 salaries
unlock blur

₹15 L/yr - ₹42.4 L/yr

Data Scientist
32 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Product Engineer
24 salaries
unlock blur

₹18.6 L/yr - ₹65 L/yr

Product Manager
24 salaries
unlock blur

₹27.9 L/yr - ₹64 L/yr

Explore more salaries
Compare Go-Jek with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

Citicorp

3.7
Compare

Morningstar

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview