Upload Button Icon Add office photos

Filter interviews by

Limechat Interview Questions and Answers

Updated 26 Aug 2024

Limechat Interview Experiences

Popular Designations

5 interviews found

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

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 javascript coding question : Group the elements based on fruit and sort.
2 SQL queries.
30 react and computer fundamentals .

Round 2 - One-on-one 

(2 Questions)

  • Q1. Implement a search keyword in given text files and print the file name and file content functionality in the backend.
  • Ans. 

    Implement search functionality to find keyword in text files and display file name and content.

    • Read all text files in a directory

    • Search for keyword in each file

    • Print file name and content if keyword is found

  • Answered by AI
  • Q2. Implement above question ,using Naive approach and boyer moore algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on JavaScript and DSA.

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

Interview Questions & Answers

user image Manoj Paramesh

posted on 23 Jun 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

General react question like custom hooks

Limechat Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Coding test consisted of mcq questions related to node js, git, express js, typescript

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)

Software Developer Interview Questions & Answers

user image Swapnil Chougule

posted on 10 Feb 2024

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

I applied via Job Portal and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic mcqa asd aptitude test 2hrs

Round 2 - Coding Test 

Some dry test, js basics , one leet code

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

Limechat interview questions for popular designations

 Production Manager

 (1)

 Software Developer

 (1)

 Backend Developer

 (1)

 Software Developer Intern

 (1)

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

I applied via Campus Placement and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describe how you would make the swiggy driver app.
  • Ans. 

    To create the Swiggy driver app, I would focus on user-friendly interface, real-time tracking, order management, and communication features.

    • Develop a user-friendly interface for drivers to easily view and accept orders.

    • Implement real-time tracking functionality for drivers to navigate to customer locations efficiently.

    • Incorporate order management tools for drivers to organize and prioritize deliveries.

    • Include communica...

  • Answered by AI
  • Q2. What are the important metrics?
  • Ans. 

    Important metrics for a Production Manager include production efficiency, quality control, inventory management, and cost effectiveness.

    • Production efficiency: Measure of how well resources are utilized to produce goods.

    • Quality control: Monitoring and ensuring products meet quality standards.

    • Inventory management: Tracking and optimizing inventory levels to meet demand.

    • Cost effectiveness: Analyzing production costs to ma

  • Answered by AI

Production Manager Interview Questions asked at other Companies

Q1. Production, Maintenance, Quality and Safety. Out of four, tell me the most important and least important thing for you and why?
View answer (10)

Interview questions from similar companies

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a typical DS/Algo where I was asked to solve two questions related to Binary Trees and write the pseudo code for both of them followed by some theoretical questions related to Operating Systems.

  • Q1. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
  • Q2. 

    Is Height Balanced Binary Tree Problem Statement

    Determine if the given binary tree is height-balanced. A tree is considered height-balanced when:

    1. The left subtree is balanced.
    2. The right subtree is bala...
  • Ans. 

    Determine if a given binary tree is height-balanced by checking if left and right subtrees are balanced and their height difference is at most 1.

    • Check if the left subtree is balanced

    • Check if the right subtree is balanced

    • Calculate the height difference between the left and right subtrees

    • Return 'True' if all conditions are met, otherwise return 'False'

  • Answered by AI
  • Q3. Can you explain the concepts of Zombie Process and Orphan Process in operating systems?
  • Ans. 

    Zombie process is a terminated process that has completed execution but still has an entry in the process table. Orphan process is a process whose parent process has terminated.

    • Zombie process is created when a child process completes execution but its parent process has not yet read its exit status.

    • Zombie processes consume system resources and should be cleaned up by the parent process using wait() system call.

    • Orphan p...

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was also a Data Structures and Algorithm round where I was asked to solve 3 medium to hard level problems along with their pseudo code within 60 minutes .

  • Q1. 

    Longest Substring Without Repeating Characters Problem Statement

    Given a string S of length L, determine the length of the longest substring that contains no repeating characters.

    Example:

    Input:
    "abac...
  • Ans. 

    Find the length of the longest substring without repeating characters in a given string.

    • Use a sliding window approach to keep track of the longest substring without repeating characters.

    • Use a hashmap to store the index of each character in the string.

    • Update the start index of the window when a repeating character is found.

    • Calculate the maximum length of the window as you iterate through the string.

    • Return the maximum le

  • Answered by AI
  • Q2. 

    Problem: Search In Rotated Sorted Array

    Given a sorted array that has been rotated clockwise by an unknown amount, you need to answer Q queries. Each query is represented by an integer Q[i], and you must ...

  • Ans. 

    Search for integers in a rotated sorted array efficiently.

    • Use binary search to efficiently search for integers in the rotated sorted array.

    • Handle the rotation of the array while performing binary search.

    • Return the index of the integer if found, else return -1.

  • Answered by AI
  • Q3. 

    Count Subarrays with Sum Divisible by K

    Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

    Input:

    The first line of input contains an...
  • Ans. 

    Count subarrays with sum divisible by K in an array.

    • Iterate through the array and keep track of the prefix sum modulo K.

    • Use a hashmap to store the frequency of each prefix sum modulo K.

    • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K.

    • Handle the case when prefix sum itself is divisible by K.

    • Return the total count of subarrays with sum divisible by K.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 50 Minutes
Round difficulty - Medium

In this round , I was asked to code a simple question related to BST . After that I was asked the internal implementation of a Hash Map where I was supposed to design a Hash Map using any of the Hashing Algorithms that I know . This was preety challenging for me but I got to learn so much from it.

  • Q1. 

    Ceil Value from BST Problem Statement

    Given a Binary Search Tree (BST) and an integer, write a function to return the ceil value of a particular key in the BST.

    The ceil of an integer is defined as the s...

  • Ans. 

    Ceil value of a key in a Binary Search Tree (BST) is found by returning the smallest integer greater than or equal to the given number.

    • Traverse the BST to find the closest value greater than or equal to the key.

    • Compare the key with the current node value and update the ceil value accordingly.

    • Recursively move to the left or right subtree based on the comparison.

    • Return the ceil value once the traversal is complete.

  • Answered by AI
  • Q2. 

    Design a Constant Time Data Structure

    Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:

    1. INSERT(key, value): Add or update t...
  • Ans. 

    Design a constant time data structure to maintain mappings between keys and values with various operations.

    • Use a hash table to achieve constant time complexity for INSERT, DELETE, SEARCH, and GET operations.

    • Keep track of the number of key-value pairs for GET_SIZE operation.

    • Check if the hash table is empty for IS_EMPTY operation.

    • Return true or false for SEARCH operation based on key existence.

    • Return the value associated...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

I found the online coding round of Flipkart to be quite difficult based on the constraints of the problem and their time limits. I coded the first problem quite easily but on the second and the third problem , my code could only pass a few test cases and gave TLE for most of them. Both the questions required very efficient solution and the last 5 to 10 Test Cases carried more weight than the rest so I didn't get through this round.

  • Q1. 

    Print the Kth Digit

    Given three non-negative integers N, M, and K, compute the Kth digit from the right in the number obtained from N raised to the power M (i.e., N ^ M).

    Input:

    The first line contains ...
  • Ans. 

    The task is to find the Kth digit from the right in the number obtained from N raised to the power M.

    • Iterate through the digits of N^M from right to left

    • Keep track of the position of the current digit

    • Return the digit at position K from the right

  • Answered by AI
  • Q2. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to form the skyline.

    • Merge consecutive horizontal segments of equal height into one to ensure no duplicates.

    • Return the fin...

  • Answered by AI
  • Q3. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindrome with the smallest start index

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAFlipkart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How will you pursue parents of the child to buy our tablets?
  • Ans. 

    I will highlight the benefits of our tablets for children's education and offer discounts or promotions to attract parents.

    • Emphasize the educational benefits of our tablets

    • Offer discounts or promotions to attract parents

    • Provide testimonials from satisfied parents

    • Partner with schools or educational institutions to promote our tablets

    • Create engaging and informative marketing materials targeted towards parents

    • Offer a tria...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be smart and answer aggressively

I applied via Job Fair and was interviewed before Feb 2021. There were 5 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 Resume tips
Round 2 - Aptitude Test 

What is aptitude test?

Round 3 - Group Discussion 

Online study and off-line which one is better?

Round 4 - Case Study 

Someone not interested in assignments.

Round 5 - One-on-one 

(2 Questions)

  • Q1. Why you choice to join with us
  • Ans. Because write now Indias largest and most trusted education system is BYJU'S. thats why not one me everyone want to join his/her children in BYJU'S.
  • Answered Anonymously
  • Q2. What is more important to you education or money?
  • Ans. Obviously is education because educated person make money so easily and how to hold the mobey they know very well
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand what they needs to us

I applied via Job lever and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy leetcode code 2 questions , HTML5 css javascript simple screen design

Round 2 - One-on-one 

(1 Question)

  • Q1. Oop, Simple coding javascript, react basic, sql basic

Interview Preparation Tips

Interview preparation tips for other job seekers - Take it easy and go with confidence which matters most
Contribute & help others!
anonymous
You can choose to be anonymous

Limechat Interview FAQs

How many rounds are there in Limechat interview?
Limechat interview process usually has 1-2 rounds. The most common rounds in the Limechat interview process are Coding Test, One-on-one Round and Aptitude Test.
How to prepare for Limechat 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 Limechat. The most common topics and skills that interviewers at Limechat expect are CRM, Automation, Health Insurance, customer support and SMS.
What are the top questions asked in Limechat interview?

Some of the top questions asked at the Limechat interview -

  1. Implement a search keyword in given text files and print the file name and file...read more
  2. Describe how you would make the swiggy driver a...read more
  3. What are the important metri...read more
How long is the Limechat interview process?

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

Recently Viewed

DESIGNATION

LIST OF COMPANIES

NMDC Limited

Overview

SALARIES

NMDC Limited

SALARIES

NMDC Limited

REVIEWS

INDOASIAN

No Reviews

REVIEWS

NMDC Limited

No Reviews

PHOTOS

Aptech

No Photos

SALARIES

NMDC Limited

No Salaries

LIST OF COMPANIES

INDOASIAN

Overview

COMPANY BENEFITS

Aptech

No Benefits

Tell us how to improve this page.

Limechat Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more

Sopra Steria

Rated 4 for Job Security by our employees on AmbitionBox

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 776 Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Swiggy Interview Questions
3.8
 • 439 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
Hike Interview Questions
3.7
 • 32 Interviews
View all

Limechat Reviews and Ratings

based on 11 reviews

2.8/5

Rating in categories

2.5

Skill development

2.8

Work-life balance

3.5

Salary

2.5

Job security

2.7

Company culture

2.7

Promotions

2.6

Work satisfaction

Explore 11 Reviews and Ratings
Customer Success Manager
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Product Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Graphic Designer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accounts Executive
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Limechat with

Freshworks

3.5
Compare

Zoho

4.3
Compare

Hike

3.6
Compare

InMobi

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