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)
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 (8)

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:
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 - 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

 Business Analyst

 (1)

 Data Analyst

 (1)

 Full Stack Developer

 (1)

 QA

 (1)

 QC Executive

 (1)

 Sde1

 (1)

 Senior Business Analyst

 (1)

 Senior Process Associate

 (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:
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 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. Valid Parenthesis

    Make use of the stack. Traverse the string and push the current character in the stack if it is an opening brace else pop from the stack If it is the corresponding starting brace for current closing brace then move to the next character of the string otherwise return false.

     

    If after complete traversal if the stack is empty then the string is balanced else it is not balanced.

     

    Pseudo Code:

    • Decla...
  • Answered Anonymously
  • 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. Categorize by Count

    The key idea behind this approach is that we can transform each string into a string representing the character count. We will use an array “count”, of size 26 such that each element of the array represents the number of a’s, b’s, c’s and so on… We will be using these frequencies to create a string, delimited by ‘#’ characters, that we will use as a key for our HashMap.

     

    For example :

    str=”abbccc”...

  • Answered Anonymously
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. Brute Force

    The basic idea is that, try all possible transactions, means move to every index and try to perform one transaction before the current index and one after the current index. For all the possibilities choose maximum.

     

    • ‘ans = 0’, to store answers as maximum profit.
    • Iterate a loop ‘i’ from ‘0’ to ‘n - 2’.
    • For every ‘i’, find the best transaction on the left side of right, which means iterate a loop ‘j’ from ‘...
  • Answered Anonymously
  • 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. Using BFS

    The idea is to use BFS traversal of the graph because considering an edge between any two adjacent words(words that will have a difference of only one alphabet) after that you just have to find the shortest between the start word and the target word and that can be done using BFS.  

      

    Here is the algorithm: 

      

    1. As the BFS procedure goes start to form the "BEGIN " word, add it to...
  • Answered Anonymously
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.  Breadth-First Search

    The basic idea is to use modified Breadth-First Search (BFS) here We can keep track of all the possible positions of the robot after ‘N’ instructions (N = 0, 1, 2, 3, 4, ...) and return the smallest ‘N’ such that the ‘TARGET’ position is reached

     

    The steps are as follows:

    1. Initialize an integer variable ‘N’:= 0.
    2. Create a queue of list/array ‘STATE’  Each element in the queue has an arr...
  • Answered Anonymously

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 MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

Sales and Marketing (Relationship Marketing) 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

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Tell me about yourself 2. How can you increase retention of customers. 3. General questions on work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 2 was to check the company fitment. More of general HR questions and questions around my work experience.

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

Tell us how to improve this page.

LimeRoad Interview Process

based on 7 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 429 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Nykaa Interview Questions
3.5
 • 112 Interviews
Snapdeal Interview Questions
3.8
 • 76 Interviews
AJIO Interview Questions
3.7
 • 64 Interviews
Shopclues Interview Questions
4.1
 • 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.6

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

₹4 L/yr - ₹10.8 L/yr

Relationship Manager
31 salaries
unlock blur

₹3.3 L/yr - ₹9 L/yr

Business Analyst
22 salaries
unlock blur

₹6 L/yr - ₹16 L/yr

Graphic Designer
22 salaries
unlock blur

₹2.7 L/yr - ₹8.1 L/yr

Operations Executive
21 salaries
unlock blur

₹2.2 L/yr - ₹4 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