I applied online. The process took 2 days. I interviewed at LimeChat (Gurgaon, Haryana) in Jan 2024
Interview
There were two rounds of interview. Bith rounds were technical rounds. The first round being a very detailed technical round while the second round was a mix of tech and HR
I applied online. I interviewed at LimeChat (Bengaluru) in Sep 2025
Interview
Short HR call to understand background, tech stack, and interest in LimeChat. Technical Round 1 (Python Snippets): Given small Python code snippets to analyze, explain functionality, execute, and debug .Questions on designing and consuming REST APIs (methods, status codes, authentication basics).
Interview questions [1]
Question 1
Q1: Implement a function deduplicate_users(users) that removes duplicates from a list of user emails.
Emails may vary in case (e.g., "Alice@example.com" and "alice@example.com" should be treated as duplicates).
Return a list of unique emails in lowercase.
"""
"""
Q2: What is the output of this code? Why?
"""
def append_to(element, to=[]):
to.append(element)
return to
# print(append_to(1)) # ?
# print(append_to(2)) # ?
"""
Q3: Write a function safe_get(d: dict, key: str) that safely returns a key's value or 'N/A' if the key is missing.
Also ensure d is actually a dict.
"""