Upload Button Icon Add office photos

Filter interviews by

Mercari Senior Software Engineer Interview Questions and Answers

Updated 19 Sep 2024

Mercari Senior Software Engineer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA coding questions

Round 2 - Coding Test 

Graph DSA questions were asked in this round

Round 3 - System Design 

(1 Question)

  • Q1. Order management system

Interview questions from similar companies

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

(2 Questions)

  • Q1. Design hld interview asked question
  • Q2. Design lld asked question
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its mcqs where we need to answer 25 questions

Round 2 - Technical 

(1 Question)

  • Q1. Knowledge if sql based on experience. Good to know joins well
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Assignment 

Machine coding - design food ordering service,

Round 2 - Technical 

(2 Questions)

  • Q1. Sort array having 0 , 1 and 2. do it in single pass
  • Ans. 

    Use Dutch National Flag algorithm to sort array of 0s, 1s, and 2s in single pass.

    • Initialize three pointers low = 0, mid = 0, high = n-1 where n is the length of the array.

    • Iterate through the array and swap elements based on their values and positions.

    • Example: Input array ['0', '1', '2', '0', '1', '2'] should be sorted as ['0', '0', '1', '1', '2', '2'].

  • Answered by AI
  • Q2. Given tree and list of nodes to be deleted. return all new trees created after the deletion
  • Ans. 

    Return new trees after deleting specified nodes from a given tree

    • Traverse the tree and delete nodes that match the given list

    • For each deleted node, create a new tree with the remaining nodes

    • Return all new trees created after deletion

  • Answered by AI
Round 3 - system design 

(1 Question)

  • Q1. Design Restaurant management sytem
  • Ans. 

    Restaurant management system to streamline operations, orders, inventory, and customer service.

    • Include features for table management, order processing, menu customization, inventory tracking, and customer feedback.

    • Implement user roles for staff, managers, and administrators with varying levels of access and permissions.

    • Integrate payment processing systems for seamless transactions and reporting.

    • Utilize data analytics t...

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Discussed about projects in depth
  • Q2. Question around redis, kafka and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design nicely.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data Structures related 2 round & 1 round system Design

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on DS and Design skills. No graphs and DP problems were asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Rotate matrix by 90 degree
  • Ans. 

    Rotate a matrix by 90 degrees.

    • Transpose the matrix

    • Reverse each row of the transposed matrix

  • Answered by AI
  • Q2. Longest substring with unique characters
  • Ans. 

    The question asks for finding the longest substring in a given string that contains only unique characters.

    • Iterate through the string and keep track of the current substring

    • Use a set to check for duplicate characters

    • Update the longest substring if a longer one is found

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. A trie question
Round 3 - Case Study 

Ecommerce hight level design

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Node JS internal
  • Q2. Previous project discussion

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. First-round was an online test on hacker rank. There were 4 questions related to the array, string, and tree.
  • Q2. Create an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Make all fields private and final

    • Don't provide any setter methods

    • Ensure that any mutable objects passed to the constructor are defensively copied

    • Make the class final so that it cannot be subclassed

  • Answered by AI
  • Q3. Create a Singelton pattern.
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class.

    • Create a private static instance of the class.

    • Create a public static method to access the instance, and create the instance if it doesn't exist.

    • Ensure thread safety by using synchronized keyword or double-checked locking.

  • Answered by AI
  • Q4. Difference between Vector and ArrayList.
  • Ans. 

    Vector is synchronized and ArrayList is not. Vector is thread-safe and ArrayList is not.

    • Vector is a legacy class and ArrayList is a part of the Java Collection Framework.

    • Vector is synchronized which means only one thread can access it at a time, while ArrayList is not.

    • Vector is thread-safe which means it can be used in a multi-threaded environment, while ArrayList is not.

    • Vector is slower than ArrayList because of synch...

  • Answered by AI
  • Q5. Create Linked List without using the internal library and provide the functionality of add delete find.
  • Ans. 

    Create Linked List without using internal library and provide add, delete, find functionality.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer and methods to add, delete, and find nodes

    • Use a loop to traverse the list and perform operations

    • Handle edge cases such as adding to an empty list or deleting the head node

  • Answered by AI
  • Q6. One question was related to binary search.
  • Q7. Few more questions related to java.
  • Q8. The architecture of the current system.
  • Ans. 

    The current system follows a microservices architecture.

    • The system is divided into multiple independent services.

    • Each service has its own database and communicates with other services through APIs.

    • The architecture allows for scalability and flexibility.

    • Examples of microservices used in the system include user authentication, payment processing, and inventory management.

  • Answered by AI
  • Q9. Find the total no of the island in a 2d matrix. Working code was required.
  • Ans. 

    Find the total no of islands in a 2D matrix.

    • Use DFS or BFS to traverse the matrix.

    • Mark visited cells to avoid repetition.

    • Count the number of islands found.

  • Answered by AI
  • Q10. Find loop in a linked list.
  • Ans. 

    Loop detection in a linked list.

    • Use two pointers, one moving at twice the speed of the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • If there is no loop, the faster pointer will reach the end of the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before the interview brush up on the Linked list, Tree, and array. This is a common interview problem asked in Snapdeal.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr
Coding qn on dynamic programing

Round 2 - Technical 

(1 Question)

  • Q1. Project Related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself clearly before taking any interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - System Design 

(2 Questions)

  • Q1. Google Autocomplete problem.
  • Ans. 

    Google Autocomplete problem involves predicting the most likely search queries based on partial input.

    • Utilize algorithms like Trie or N-gram models to efficiently predict search queries.

    • Consider user's location, search history, and popular queries for better predictions.

    • Implement real-time updating of autocomplete suggestions based on user input.

    • Optimize for speed and accuracy to enhance user experience.

  • Answered by AI
  • Q2. Spiral Problem matrix
Round 2 - Coding Test 

Word Search2 problem. Interviewer wanted solution other than trie.

Interview Preparation Tips

Topics to prepare for Amazon Senior Software Engineer interview:
  • Graphs

Skills evaluated in this interview

Mercari Interview FAQs

How many rounds are there in Mercari Senior Software Engineer interview?
Mercari interview process usually has 3 rounds. The most common rounds in the Mercari interview process are Coding Test.
How to prepare for Mercari Senior Software Engineer 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 Mercari. The most common topics and skills that interviewers at Mercari expect are Open Source, Automation Testing, DNS, HTTP and Linux.

Tell us how to improve this page.

Mercari Senior Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
Mercari Senior Software Engineer Salary
based on 7 salaries
₹36 L/yr - ₹52 L/yr
190% more than the average Senior Software Engineer Salary in India
View more details

Mercari Senior Software Engineer Reviews and Ratings

based on 2 reviews

1.9/5

Rating in categories

1.9

Skill development

2.7

Work-life balance

1.9

Salary

1.9

Job security

1.9

Company culture

1.9

Promotions

1.9

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineering Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mercari with

OLX

3.8
Compare

Quikr

3.7
Compare

Flipkart

4.0
Compare

Amazon

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