Upload Button Icon Add office photos

Filter interviews by

Lifesight Interview Questions, Process, and Tips

Updated 18 May 2024

Top Lifesight Interview Questions and Answers

  • Q1. 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 . ...read more
    asked in Software Developer interview
  • 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 su ...read more
    asked in Software Developer interview
  • Q3. 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). B ...read more
    asked in Software Developer interview
View all 7 questions

Lifesight Interview Experiences

Popular Designations

3 interviews found

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
  • Ans. 

    SQL query to join tables

    • Use the JOIN keyword to combine rows from two or more tables based on a related column between them

    • Specify the columns to be selected from each table

    • Use ON clause to specify the join condition

  • Answered by AI
  • 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

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)
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

Production Analyst Interview Questions asked at other Companies

Q1. Minimum Time To Solve The Problems Given 'N' subjects, each containing a certain number of problems, and 'K' friends, assign subjects to friends such that each subject goes to exactly one friend, maintaining contiguity in assignment, aiming... read more
Add answer

I was interviewed 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. BST property

    The approach is based on the fact that the value of each node in a BST is greater than the value of all the nodes in the left subtree and smaller than the value of all the nodes in the right subtree.

     

    Here is the complete algorithm-

    • For each node, we store the minimum and maximum value allowed for that node. Initially, for the root node, the minimum value would be -10^9 and the maximum value should be 10...
  • Answered Anonymously
  • 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. Brute Force
    • We will generate all the substrings using two nested loops and have a ‘check’ function which returns ‘true’ if the number of distinct characters in the substring is less than equal to K, otherwise ‘false’.
    • We will have a ‘longestLength’ variable initialized to 0. We will call the ‘check’ function with every substring, and if it returns true, then:
      • ‘longestLength = max(longestLength, currentSubstring.size())’
    • To...
  • Answered Anonymously
  • 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. DFS Approach (Slow)

    There is a cycle in the graph only if there is a back edge (back edge is an edge that connects a vertex to another vertex that is discovered before it's parent) present in the graph. To detect a back edge, we will keep track of vertices that have been already visited. If we reach a vertex that is already visited and is not the parent vertex of the current vertex, then there is a cycle in the graph.&n...

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

    The idea is to choose a peak value at the ‘dayNumber’ th index. Then we can create the array like a mountain with the peak of the mountain being at the  ‘dayNumber’ th index. The sum of the elements of this array must be less than or equal to maxVaccines.If we find that the sum is greater, then we have chosen a high peak value, and if it is less, then it means we have chosen a smaller peak value. So we ...

  • Answered Anonymously
  • 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. Recursive Approach

    We can use a backtracking approach to generate all the valid combinations.

     

    The approach will be:

    • We will sort the array/list ‘ARR’ in ascending order.
    • Let the current sum of the combination on which we are recursing over be ‘currSum’ and the index which we are on in the array/list  ‘ARR’ be ‘currIndex’.
    • In each recursive call, we will:
      • While currSum <= B:
        • Increase ‘currSum’ by ARR[currIndex].
        • ...
  • Answered Anonymously
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. Brute Force

    Our intuition here is to go through each sliding window and keep track of the maximum element in each sliding window. To implement the same we run two nested loops, where the outer loop which will mark the starting point of the subarray of length k, the inner loop will run from the starting INDEX to INDEX + K, K elements from starting index and store the maximum element among these K elements into the answer...

  • Answered Anonymously

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 Lifesight Software Developer Interview Questions and Answers

Q1. Longest Sub-string With K Distinct CharactersYou are given a string 'S' of length 'N' consisting of lowercase English alphabet letters. You are also given a positive integer 'K'. Now, a substring of this string is good if it contains at mos... read more
View answer (4)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was fulfilling their criteria of 60% through out the academics.

Round: Test
Experience: Aptitude was easy. It contained basics of Quants & Logic . Verbal or English part was bit difficult and length. There was a sectional time and sectional cut off.

Round: Interview
Experience: There was only one interview. Both Technical and HR questions were asked in the same interview. Prepare puzzles from the book Puzzles to puzzle you by Shakuntala Devi. This book helped me a lot. Technical questions were very basic but nearly from every subject.

General Tips: BE CONFIDENT. Speak Confident in Interview even if you are not good with ur english.
Skills: English language, Communication Skills, Reasoning Abilities
College Name: Jawaharlal Nehru Engineering College Aurangabad

Interview Questions & Answers

TCS user image Anonymous

posted on 7 Jan 2015

Interview Questionnaire 

3 Questions

  • Q1. Where did you do the internship ?
  • Ans. 

    I did my internship at XYZ Corporation.

    • Interned at XYZ Corporation

    • Worked in the marketing department

    • Assisted in creating social media campaigns

    • Conducted market research

    • Attended meetings with clients

  • Answered by AI
  • Q2. What did you learn from your mistakes ?
  • Ans. 

    I learned to take responsibility for my actions and to use my mistakes as opportunities for growth.

    • I learned to admit my mistakes and apologize when necessary

    • I learned to reflect on my mistakes and identify areas for improvement

    • I learned to seek feedback from others and use it to make positive changes

    • I learned to not be afraid of failure and to view it as a learning experience

    • For example, when I made a mistake at work ...

  • Answered by AI
  • Q3. Why should we recruit you ?
  • Ans. 

    I have the skills, experience, and passion to contribute to the success of your company.

    • I have a proven track record of achieving targets and exceeding expectations.

    • I possess strong communication and interpersonal skills, which enable me to work effectively with colleagues and clients.

    • I am a quick learner and adaptable to new environments and technologies.

    • I am passionate about the industry and eager to contribute to th...

  • Answered by AI

Interview Preparation Tips

Round: knowledge assessment
Experience: The first round was an online assessment of your knowledge in any of the three languages (C , C++, Java ).
Tips: Although they specify the syllabus but don't just rely on that.

Round: Interview
Experience: Second round was a HR + Technical interview.
The HR was combined with Technical interview in which they asked about the basic HR questions. The technical interview included a few basic questions on C or C++ programming and a few questions relating to the technicalities of the projects we did in our internships and Hobbies club..
Tips: Be well prepared for HR questions. Listen to the PPT carefully .

Round: IQ test
Experience: The third round was a simple IQ test. Be well versed with the language of your choice.

General Tips: The online test can be tackled if you study the first year alloted assigned book for the language you prefer. Having chosen C++ I was asked many questions related to templates and data structures.
College Name: IIT Roorkee

Interview Questions & Answers

Cognizant user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

1 Question

  • Q1. Why should we select you?
  • Ans. 

    I have the necessary skills, experience, and passion to excel in this role.

    • I have relevant experience in the field

    • I possess the required skills and qualifications

    • I am a quick learner and adaptable to new situations

    • I am passionate about the industry and eager to contribute

    • I am a team player and work well with others

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Very basic(class 7 level) english, quant and DI from CAT preparation will do. I was asked to estimate the number of newspapers I would buy if I am a supplier for the campus. Then slightly complicated the problem four or five times.
Tips: Try to answer as many questions as possible--the test is the one major criterion for selection.
Total Questions: 65

Round: Guesstimate Interview
Experience: One-on-one interview.Basic guess estimation and details about your projects. Try to show you have some knowledge in mathematics.

Round: HR Interview
Experience: HR interview--A panel of 4 or 5 people(who have taken the individual interviews in round I).
Tips: Be confident and try not to tell something which you can’t defend.

General Tips: As is the case for most companies&#44; CAT preparation will definitely help. I don’t think much focus was was given on the essay but the other sections of the test are really important.
Skill Tips: A decent CGPA(mine was exactly 8) will help. HR interview--A panel of 4 or 5 people(who have taken the individual interviews in round I). Should be able to speak about your own projects and internships.
College Name: IIT KHARAGPUR

Interview Preparation Tips

General Tips: KGPians have to be a little more in the know-how of latest trends in IT and programming language landscape. KGPians don’t do group projects much&#44; specially group programming/software project. Be affirmative about your abilities and be more clear in your intent, in interviews.
Skill Tips: Must: minimum CGPA of 8. they reduced the gpa requirement to 7.9 but they maintain final gpa must be 8. Good to have: Some knowledge of programming languages,databases,Algorithms. Any extra-academic involvement helps ,but is not a requirement. Be in touch with discrete math(not requirement). C++,Java programming(may be a little bit of Python). Projects and internships with computer programming as major /critical part. Having lead a bunch of juniors or equals in a project. Decent communication skills is essential.
College Name: IIT KHARAGPUR

Interview Preparation Tips

Round: Interview
Experience: Quizzed on opinions of the Construction Industry.

General Tips: 1. Be prepared on the courses and project works that you mention in your resume2. Read newspapers, blogs about the construction industry and keep yourself updated
Skill Tips: """"
Skills: Infrastructure Planning, Infrastructure Management, Construction Management, Project Management
College Name: VIT Chennai

Interview Questions & Answers

HCLTech user image Anonymous

posted on 11 Apr 2015

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Tell me about your family
  • Q3. What are your interests/hobbies

Interview Preparation Tips

Round: Test
Experience: One written test. It contains three sections. Each section is of 20 minutes duration.
Tips: Prepare well with general aptitude and have some basic technical knowledge.
Duration: 60 minutes

Round: Group Discussion
Experience: The topic may be any technical topic or any general matter.
Tips: Maintain your voice pitch, be clear with what you are talking and listen to others also.
Duration: 20 minutes

Round: HR Interview
Experience: He also gave me a situation and asked me how I would react.
Tips: Be realistic with your hobbies and interests. Do not bluff anything.

Skills: Good technical skills., Good communication skills.
College Name: NA

Interview Questionnaire 

7 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with experience in developing and maintaining software applications.

    • I have a strong background in programming languages such as Java, C++, and Python.

    • I have worked on various projects, including developing web applications and implementing software solutions.

    • I am skilled in problem-solving and debugging, ensuring efficient and effective software development.

    • I have experience in collaborating wi...

  • Answered by AI
  • Q2. What are your objectives
  • Q3. What are you going to do for companies betterment
  • Q4. What is your final year project all about
  • Q5. What you learned from your summer intenship
  • Ans. 

    I learned valuable teamwork and problem-solving skills during my summer internship.

    • Developed strong collaboration skills by working with a team of software engineers to complete projects

    • Gained experience in troubleshooting and debugging software issues

    • Learned to effectively communicate and present technical concepts to both technical and non-technical stakeholders

    • Improved problem-solving abilities by identifying and re...

  • Answered by AI
  • Q6. What you learned from your winter intenship
  • Q7. Do you have any question

Interview Preparation Tips

Round: Test
Experience: Verbal section was a easy section,It comprised of Comprehension,Spotting errors,Synonyms,Antonyms,Relationship between two given words,Rearranging the sentences.Logical reasoning the second section in which problems on data interpretation,blood relations,syllogism,where there with little bit difficulty.third section was of quant we usual  think it's easy but this was a tough one! with standard problems,percentage,profit loss,speed distance time.....etc.
Tips: While,attempting verbal part always give most appropriate answers.Options may be more confusing and closer one but you have to select the correct one!!!!! Always check for sectional cutoff and if its there then try to attempt each section properly if not then concentrate on section in which you are strong....refer to sites such as IndiaBIX, M4maths, freshersworld for aptitude questions
Duration: 60 minutes
Total Questions: 75

Round: Group Discussion
Experience: GD was not a round included for Capgemini placement test,Pearson versant english test was there once you clear your apti but due to technical faults GD was the round taken.There was a group of 10 people and we were given topic and 5 mins for preparation then GD was started.I was the second one to speak on the topic,I was in the favour of MNC because I really feel that for freshers Indian IT company is not very great start.Rather if one starts with MNC then it gets a brand name associated with them and also global exposure for one.And also Indian IT sectors are largely collaborating with the MNCs so for fresher MNC is a good start than Indian IT company.
Tips: I will suggest you to understand the topic well,jot down the points you want to say and then always initiate for the GD do not argue,just humbly disagree to the topic,do not get personal in it...as soon as you start the supervisor judges you so do not hesitate and just put your points confidently only your English is judged by this...
Duration: 20 minutes

Round: HR Interview
Experience: As I entered they  checked me from top to bottom means how formally you are dressed and shoes,then asked for my resume and started to see and verify each and everything written in it is true and genuine.And both TR and HR interview was taken simultaneously.My interview was the quicker one they just started with name then all above mentioned questions....
Tips: Go properly dressed with shoes polished,do not panic or try to recollect what you  have prepared just be genuine.Write resume neatly and study it well they scan it and ask most questions from it...

Round: Pearson versant English test
Experience: This test consist of two sections firstly the telephonic round in which we were provided with one toll free number and  unique test-id then it was for about 20 mins we talked on telephone.The questions asked were on basic english,like  repeat the sentences,correct the jumbled sentences,complete the sentences,answer in yes or no.Second test was a computer based test for 60 mins in which complete the sentences synonyms,copying the passage,email writing ,listen and write,were few of the questions directed.this test is taken mainly to check your english and writing skills.
Tips: Be clear and loud enough in telephonic test,and search placement papers of every company you sit for.

General Tips: "Try try you will succeed" always believe on this saying and keep giving tests if you failed in one!!
College Name: TERNA ENGINEERING COLLEGE
Motivation: Capgemini is one of good MNC its under top 10 best IT companies also its symbol spade which represented free enivronment to work and moto "People matter&#44;results count".motivated me to join it!

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 Cloud.
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. Behaviour based product questi...read more
  3. Questions about their prod...read more

Tell us how to improve this page.

Lifesight Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
MoEngage Interview Questions
4.0
 • 26 Interviews
CleverTap Interview Questions
3.6
 • 15 Interviews
Zeotap India Interview Questions
4.5
 • 10 Interviews
Affle Interview Questions
3.1
 • 4 Interviews
View all

Lifesight Reviews and Ratings

based on 16 reviews

4.0/5

Rating in categories

4.4

Skill development

4.6

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
Associate Software Engineer
5 salaries
unlock blur

₹8 L/yr - ₹9 L/yr

Data Analyst
5 salaries
unlock blur

₹4.6 L/yr - ₹7.6 L/yr

Visual Designer
5 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Production Analyst
5 salaries
unlock blur

₹9 L/yr - ₹10.1 L/yr

Associate Product Manager
4 salaries
unlock blur

₹17 L/yr - ₹17 L/yr

Explore more salaries
Compare Lifesight with

Near

4.0
Compare

MoEngage

4.0
Compare

CleverTap

3.6
Compare

InMobi

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