Upload Button Icon Add office photos

Filter interviews by

Lifesight Interview Questions and Answers

Updated 23 Jun 2025
Popular Designations

6 Interview questions

A Software Developer was asked
Q. 

Sliding Window Maximum Problem Statement

You are given an array/list of integers with length 'N'. A sliding window of size 'K' moves from the start to the end of the array. For each of the 'N'-'K'+1 possib...

Ans. 

Sliding window maximum problem where we find maximum element in each window of size K.

  • Use a deque to store indices of elements in decreasing order within the window.

  • Pop elements from the deque that are out of the current window.

  • Append the maximum element from the front of the deque to the result for each window.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Combination Sum Problem Statement

Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be ch...

Ans. 

Find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

  • Use backtracking to generate all possible combinations of elements in the array that sum up to the target sum.

  • Sort the array to ensure elements in each combination are in non-decreasing order.

  • Handle duplicate elements in the array to avoid duplicate combinations.

  • Consider edge cases like empt...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Longest Substring with K Distinct Characters

You are provided with a string S of length N, consisting of lowercase English alphabet letters, and a positive integer K.

Your task is to determine the maximum...

Ans. 

Find the longest substring with at most K distinct characters in a given string.

  • Use a sliding window approach to keep track of the characters and their counts in the substring.

  • Maintain a hashmap to store the characters and their frequencies.

  • Update the window size and characters count as you iterate through the string.

  • Return the maximum length of the substring with at most K distinct characters.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Cycle Detection in Undirected Graph Problem Statement

You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determin...

Ans. 

Detect if an undirected graph contains a cycle.

  • Use depth-first search (DFS) to detect cycles in the graph.

  • Maintain a visited array to keep track of visited vertices.

  • If a visited vertex is encountered again during DFS, a cycle exists.

  • Consider disconnected graphs as well.

  • Example: For input N=3, Edges=[[1, 2], [2, 3], [1, 3]], output is Yes.

View all Software Developer interview questions
A Software Developer was asked
Q. 

Validate Binary Search Tree (BST)

You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

BST Definition:

A Binary Search Tre...

Ans. 

Validate if a given binary tree is a Binary Search Tree (BST) or not.

  • Check if the left subtree of a node contains only nodes with data less than the node's data.

  • Check if the right subtree of a node contains only nodes with data greater than the node's data.

  • Recursively check if both the left and right subtrees are also binary search trees.

  • Example: For each node, validate if its left child is less than the node and ...

View all Software Developer interview questions
A Software Developer was asked
Q. 

Covid Vaccination Distribution Problem

As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is ...

Ans. 

Given constraints and rules, find maximum vaccines administered on a specific day during a vaccination drive.

  • Iterate through each test case and calculate the maximum number of vaccines distributed on the specified day.

  • Distribute vaccines evenly across days while maximizing the number on the specified day.

  • Ensure that the sum of vaccines administered does not exceed the maximum allowed.

  • Consider edge cases like when ...

View all Software Developer interview questions

Lifesight Interview Experiences

4 interviews found

Marketing Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Growth strategies you used in previous company
  • Q2. What do you know about Marketing, Growth, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - DO NOT waste your time interviewing here! I had 2 other opportunities, but since I live nearby Lifesight, I wanted to join here. Aced the final round interview. HR congratulated me and told me that I would receive my offer letter on Monday, but upon calling her on Monday, she said they are interviewing other candidates and wait till Friday and received a rejection email on Friday! DO NOT TRUST this company! Absolutely HORRIBLE and THIRD CLASS Management!
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2023. There were 2 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 tips
Round 2 - Technical 

(4 Questions)

  • Q1. Write an SQL query to join tables
  • Q2. How would you expand your product to a new market
  • Q3. Questions about their product
  • Q4. Questions about past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - More of a skills based interview than about thought process or experience. They're looking for a very specific profile which actually they didn't test in the interview much which was odd. Interviewer was a bit rude and didn't introduce themselves.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Behaviour based product questions

I appeared for an interview in Jan 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

This round was with SDE-1 
After my introduction , he asked me 3 Questions
 

  • Q1. 

    Validate Binary Search Tree (BST)

    You are given a binary tree with 'N' integer nodes. Your task is to determine whether this binary tree is a Binary Search Tree (BST).

    BST Definition:

    A Binary Search Tr...

  • Ans. 

    Validate if a given binary tree is a Binary Search Tree (BST) or not.

    • Check if the left subtree of a node contains only nodes with data less than the node's data.

    • Check if the right subtree of a node contains only nodes with data greater than the node's data.

    • Recursively check if both the left and right subtrees are also binary search trees.

    • Example: For each node, validate if its left child is less than the node and right...

  • Answered by AI
  • Q2. 

    Longest Substring with K Distinct Characters

    You are provided with a string S of length N, consisting of lowercase English alphabet letters, and a positive integer K.

    Your task is to determine the maximu...

  • Ans. 

    Find the longest substring with at most K distinct characters in a given string.

    • Use a sliding window approach to keep track of the characters and their counts in the substring.

    • Maintain a hashmap to store the characters and their frequencies.

    • Update the window size and characters count as you iterate through the string.

    • Return the maximum length of the substring with at most K distinct characters.

  • Answered by AI
  • Q3. 

    Cycle Detection in Undirected Graph Problem Statement

    You are provided with an undirected graph containing 'N' vertices and 'M' edges. The vertices are numbered from 1 to 'N'. Your objective is to determi...

  • Ans. 

    Detect if an undirected graph contains a cycle.

    • Use depth-first search (DFS) to detect cycles in the graph.

    • Maintain a visited array to keep track of visited vertices.

    • If a visited vertex is encountered again during DFS, a cycle exists.

    • Consider disconnected graphs as well.

    • Example: For input N=3, Edges=[[1, 2], [2, 3], [1, 3]], output is Yes.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 90 Miinutes
Round difficulty - Medium

This round was with a Senior Data Engineer as this position was a mix of Backend and Big Data.

 

  • Q1. 

    Covid Vaccination Distribution Problem

    As the Government ramps up vaccination drives to combat the second wave of Covid-19, you are tasked with helping plan an effective vaccination schedule. Your goal is...

  • Ans. 

    Given constraints and rules, find maximum vaccines administered on a specific day during a vaccination drive.

    • Iterate through each test case and calculate the maximum number of vaccines distributed on the specified day.

    • Distribute vaccines evenly across days while maximizing the number on the specified day.

    • Ensure that the sum of vaccines administered does not exceed the maximum allowed.

    • Consider edge cases like when the n...

  • Answered by AI
  • Q2. 

    Combination Sum Problem Statement

    Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...

  • Ans. 

    Find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations of elements in the array that sum up to the target sum.

    • Sort the array to ensure elements in each combination are in non-decreasing order.

    • Handle duplicate elements in the array to avoid duplicate combinations.

    • Consider edge cases like empty arr...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 75 Minutes
Round difficulty - Easy

This round was taken by Engineering Manager
There were 2 sections to this round
Technical and Non Techincal
 

  • Q1. 

    Sliding Window Maximum Problem Statement

    You are given an array/list of integers with length 'N'. A sliding window of size 'K' moves from the start to the end of the array. For each of the 'N'-'K'+1 possi...

  • Ans. 

    Sliding window maximum problem where we find maximum element in each window of size K.

    • Use a deque to store indices of elements in decreasing order within the window.

    • Pop elements from the deque that are out of the current window.

    • Append the maximum element from the front of the deque to the result for each window.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Guru Gobind Singh Indraprastha University. Eligibility criteria2+ years of Work Experience in the relevant fieldLifesight interview preparation:Topics to prepare for the interview - DataStructures, Algorithms, Problem Solving, Big Data, Distributed Systems, SparkTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Be solid with the basics of Ds, Algo. Good to have end to end projects which are hosted on cloud.
Tip 2 : Its always good to be presentable and have good communications skills
Tip 3 : Be honest, clear in approach and always walkthrough your thought process to the interviewer

Application resume tips for other job seekers

Tip 1 : Mention your projects and experience at the top. Be clear on what was done, a brief on how it was done, language /tech stack involved. If possible try to host and make it accessible. You never know if you can present it with just one click.
Tip 2 : Choose a balance between, white spaces and text, it should be well indented, no grammatical errors.
Tip 3 : It takes less than 2 min to scan a resume. Don't mention things which are irrelevant.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Lifesight?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

Lifesight Interview FAQs

How many rounds are there in Lifesight interview?
Lifesight interview process usually has 1-2 rounds. The most common rounds in the Lifesight interview process are Technical and Resume Shortlist.
How to prepare for Lifesight 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 Lifesight. The most common topics and skills that interviewers at Lifesight expect are Machine Learning, Agile, Artificial Intelligence, Python and SQL.
What are the top questions asked in Lifesight interview?

Some of the top questions asked at the Lifesight interview -

  1. Write an SQL query to join tab...read more
  2. What do you know about Marketing, Growth, ...read more
  3. Growth strategies you used in previous comp...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 67%
2-4 weeks 33%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.8
 • 8.6k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.3k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
View all

Lifesight Reviews and Ratings

based on 16 reviews

4.0/5

Rating in categories

4.4

Skill development

4.7

Work-life balance

3.5

Salary

3.9

Job security

4.1

Company culture

3.4

Promotions

4.0

Work satisfaction

Explore 16 Reviews and Ratings
Product Marketing Manager
7 salaries
unlock blur

₹15 L/yr - ₹17 L/yr

Associate Product Manager
6 salaries
unlock blur

₹17 L/yr - ₹19 L/yr

Data Analyst
6 salaries
unlock blur

₹4.6 L/yr - ₹7.6 L/yr

Associate Software Engineer
5 salaries
unlock blur

₹8 L/yr - ₹9 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹15 L/yr - ₹42.5 L/yr

Explore more salaries
Compare Lifesight with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview