Upload Button Icon Add office photos

Filter interviews by

LimeRoad Interview Questions, Process, and Tips

Updated 21 Apr 2024

Top LimeRoad Interview Questions and Answers

View all 7 questions

LimeRoad Interview Experiences

Popular Designations

9 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Apr 2024

Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Referral and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Window functions
  • Q2. Joins and aggregate functions
  • Q3. Abalytical function lag() and lead() question
Round 2 - One-on-one 

(1 Question)

  • Q1. Guesstimate and Puzzle

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)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

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

(1 Question)

  • Q1. SQL based questions were asked with some puzzles

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
LimeRoad Interview Questions and Answers for Freshers
illustration image

Sde1 Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2024

Interview experience
3
Average
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 

(1 Question)

  • Q1. Group anagrams , coin change problem
  • Ans. These are pretty basic questions from leetcode
  • Answered Anonymously
Round 2 - Technical 

(1 Question)

  • Q1. Subset sum to k
  • Ans. 

    Given an array of integers, determine if there is a subset that sums up to a given target value.

    • Use a recursive approach to explore all possible subsets

    • At each step, either include the current element or exclude it

    • If the target value is reached, return true

    • If all elements are exhausted and the target value is not reached, return false

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Discussion about work I did in previous org

Interview Preparation Tips

Topics to prepare for LimeRoad Sde1 interview:
  • DSA
  • System Design
  • Web Development
Interview preparation tips for other job seekers - DSA to intermediate level , system design for better opportunities.

Skills evaluated in this interview

Sde1 Interview Questions asked at other Companies

Q1. DSA and Language Questions: 1. Difference between Arrays and ArrayList in Java. 2. Queue Implementation using Linked List. 3. BST- How would you fill a BST with a sorted array. 4. Random pointer linked-list clone. 5. Fibonacci number genera... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - HR 

(1 Question)

  • Q1. General intro and basic life question
Round 3 - One-on-one 

(1 Question)

  • Q1. Work experiance and excel

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn xcel formula and good communication

Senior Process Associate Interview Questions asked at other Companies

Q1. What is Purchase Order?
View answer (39)

LimeRoad interview questions for popular designations

 Data Analyst

 (1)

 Senior Business Analyst

 (1)

 Full Stack Developer

 (1)

 Business Analyst

 (1)

 QC Executive

 (1)

 QA

 (1)

 Senior Process Associate

 (1)

 Sde1

 (1)

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. 1st round was mostly around SQL- joins, functions, aggregations, window functions etc, and then around my past experience & role, the projects I had done.
Round 3 - One-on-one 

(1 Question)

  • Q1. 2nd round was around some business scenarios & case study, forecasting demand/trends, product sense etc.

Interview Preparation Tips

Topics to prepare for LimeRoad Senior Business Analyst interview:
  • SQL
  • Business Analysis
  • Case Studies
Interview preparation tips for other job seekers - Be good with SQL (working knowledge), know your past & current projects in depth, be aware about the general industry trends.

Senior Business Analyst Interview Questions asked at other Companies

Q1. Difference between annuity and pension, types of annuity and pension, actions done on a policy, policy flow, RI insurance and it’s types and difference between them. Coinsurance, what are the charges when u cancel policy in 1st year vs 3rd ... read more
View answer (1)

I was interviewed in Jun 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Algorithm and Data Structures. MCQ based on dbms, html, css, js, sql, oops, program output.

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through each character in the string and use a stack to keep track of opening parentheses

    • If a closing parenthesis is encountered, check if it matches the top of the stack. If not, the string is not balanced

    • If all parentheses are matched correctly and the stack is empty at the end, the string is balanced

  • Answered by AI
  • Q2. 

    Group Anagrams Problem Statement

    Given an array or list of strings called inputStr, your task is to return the strings grouped as anagrams. Each group should contain strings that are anagrams of one anoth...

  • Ans. 

    Group anagrams in an array of strings based on their characters.

    • Iterate through each string in the input array

    • Sort the characters of each string and use the sorted string as a key in a hashmap to group anagrams

    • Return the values of the hashmap as the grouped anagrams

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Algorithm and Data Structures. Sql queries insert and update commands.

  • Q1. 

    Buy and Sell Stock - III Problem Statement

    Given an array prices where the ith element represents the price of a stock on the ith day, your task is to determine the maximum profit that can be achieved at ...

  • Ans. 

    Determine the maximum profit that can be achieved by selling stocks with at most two transactions.

    • Iterate through the array and calculate the maximum profit that can be achieved by selling stocks at each day.

    • Keep track of the maximum profit after the first transaction and the maximum profit after the second transaction.

    • Return the maximum profit that can be achieved overall.

  • Answered by AI
  • Q2. 

    Word Ladder Problem Statement

    Given two strings, BEGIN and END, along with an array of strings DICT, determine the length of the shortest transformation sequence from BEGIN to END. Each transformation inv...

  • Ans. 

    The Word Ladder problem involves finding the shortest transformation sequence from one word to another by changing one letter at a time.

    • Use breadth-first search to find the shortest transformation sequence.

    • Create a graph where each word is a node and words that can be transformed into each other are connected.

    • Keep track of visited words to avoid cycles and optimize the search process.

    • Return -1 if no transformation sequ...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Some questions related to html and css. What are the various selector in css. SQL queries on how to use group by and having. Difference between truncate and delete.

  • Q1. 

    Problem: Ninja's Robot

    The Ninja has a robot which navigates an infinite number line starting at position 0 with an initial speed of +1. The robot follows a set of instructions which includes ‘A’ (Acceler...

  • Ans. 

    Determine the minimum length of instruction sequence for a robot to reach a given target on an infinite number line.

    • Start at position 0 with speed +1, update position and speed based on 'A' and 'R' instructions

    • For each test case, find the shortest sequence of instructions to reach the target

    • Consider both positive and negative positions for the robot

    • Return the minimum length of instruction sequence for each test case

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Fullstack Developer in GurgaonEligibility criteriaNo criteriaLimeroad.com interview preparation:Topics to prepare for the interview - Algorithms, Data Structures, DP, Tree, Linked List, OOPS, JavaTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice leetcode medium problems and also geeksforgeeks
Tip 2 : Have good knowledge of OOPS concept
Tip 3 : Good to know about Java

Application resume tips for other job seekers

Tip 1 : Put your achievements like ranks in coding contest or leetcode rating
Tip 2 : Better to have Java as a skill and some good projects or internships.

Final outcome of the interviewSelected

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2021

I was interviewed in May 2021.

Interview Questionnaire 

1 Question

  • Q1. Company have an opening for Relationship manager from last 7 Months. In the month of June 2021 companys Hr Mr. Gaurav call me for recruitment for RM position and scheduled my interview but they didn't take...

Interview Preparation Tips

Interview preparation tips for other job seekers - HR need to coordinate with candidate either they shortlisted or not. Hr never responding the calls of interviewer.

QA Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2021

Interview Questionnaire 

1 Question

  • Q1. About my self

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence during an interview ever.

QA Interview Questions asked at other Companies

Q1. Problem Statement - Ringa Ringa Roses There are bunch of kids (n) who are standing in a circle and reciƟng a rhyme (having m words). Each kid recites only a single word from the rhyme and then the next kid recites the next word. The kid who... read more
View answer (4)

QC Executive Interview Questions & Answers

user image Anonymous

posted on 12 May 2018

Interview Questionnaire 

5 Questions

  • Q1. My quslifications
  • Q2. My work exprience how much work did i have in the company andwhere did it all come
  • Q3. Technical knowledge
  • Q4. My personal life exprience
  • Q5. Check the garment made tax report
  • Ans. 

    The garment tax report needs to be checked.

    • Review the garment tax report for accuracy and completeness.

    • Ensure that all tax calculations are correct.

    • Verify that the report includes all necessary information, such as tax rates and applicable exemptions.

    • Cross-check the report with relevant documentation, such as invoices and receipts.

    • Identify any discrepancies or errors and take appropriate actions to rectify them.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: nokri.com

Round: Resume Shortlist
Experience: talked up over salaries

QC Executive Interview Questions asked at other Companies

Q1. Have you know/done Hplc operation and calibration?
View answer (3)

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: Interviews were driven to know the candidate better and their capabilities. They also didn’t waste much time asking students who they were sure not to recruit and conducting reasonably long interviews.

General Tips: Do’s :
1. Start preparing with the start of the summers.
2. Concentrate on your own preparation and not on what others are doing.
3. Keep the preparation time of HR to maximum 20 hours because HR accounts for just 20% weightage in your selection procedure.
4. Have patience.
5. Prepare every point written in the resume such that you are able to speak for at least 3 min on the subject. You might gain bonus points if you are aware of some latest developments or strategic changes in the field.

Don’ts :
1. Never bog down when you are either not shortlisted in the company who have been aiming for or when even after practice you are not getting the correct way.
2. Do not form very large groups for the preparation. Try making the preparation time that you spend with the group as efficient as possible with the least of bulla sessions.

College Name: IIT Kanpur
Contribute & help others!
anonymous
You can choose to be anonymous

LimeRoad Interview FAQs

How many rounds are there in LimeRoad interview?
LimeRoad interview process usually has 2-3 rounds. The most common rounds in the LimeRoad interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for LimeRoad 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 LimeRoad. The most common topics and skills that interviewers at LimeRoad expect are SQL, Marketing, Analytics, Data Visualization and E-commerce.
What are the top questions asked in LimeRoad interview?

Some of the top questions asked at the LimeRoad interview -

  1. check the garment made tax rep...read more
  2. Subset sum t...read more
  3. Company have an opening for Relationship manager from last 7 Months. In the mon...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

DESIGNATION

Tell us how to improve this page.

LimeRoad Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5.1k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 437 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Myntra Interview Questions
4.0
 • 216 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
AJIO Interview Questions
3.7
 • 64 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Voonik Interview Questions
2.1
 • 1 Interview
View all

LimeRoad Reviews and Ratings

based on 128 reviews

2.6/5

Rating in categories

2.6

Skill development

2.6

Work-life balance

2.5

Salary

2.4

Job security

2.6

Company culture

2.2

Promotions

2.6

Work satisfaction

Explore 128 Reviews and Ratings
Assistant Manager
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Category Manager
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare LimeRoad with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent