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

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)

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.

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)
LimeRoad Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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)

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.

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)

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
3
Average
Difficulty level
-
Process Duration
-
Result
-

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)
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.

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 appeared for an interview 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 appeared for an interview 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)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Skills evaluated in this interview

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

SALARIES

Praxis Business School

SALARIES

ExcelR

SALARIES

Praxis Business School

INTERVIEWS

LimeRoad

No Interviews

SALARIES

ExcelR

SALARIES

ExcelR

SALARIES

ExcelR

SALARIES

ExcelR

SALARIES

ExcelR

INTERVIEWS

Meru cabs

No Interviews

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.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Nykaa Interview Questions
3.5
 • 114 Interviews
Snapdeal Interview Questions
3.8
 • 75 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
39 salaries
unlock blur Lock Unlock

₹4.1 L/yr - ₹10.8 L/yr

Relationship Manager
31 salaries
unlock blur Lock Unlock

₹3.3 L/yr - ₹9 L/yr

Business Analyst
22 salaries
unlock blur Lock Unlock

₹6 L/yr - ₹16 L/yr

Operations Executive
21 salaries
unlock blur Lock Unlock

₹2.2 L/yr - ₹4 L/yr

Category Manager
20 salaries
unlock blur Lock Unlock

₹6 L/yr - ₹16 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