Upload Button Icon Add office photos

Lido Learning

Compare button icon Compare button icon Compare

Filter interviews by

Lido Learning Interview Questions and Answers for Freshers

Updated 10 Jul 2024
Popular Designations

7 Interview questions

A Business Development Associate was asked
Q. Sell me the same set of earpods that I already have.
Ans. 

Our earpods offer superior sound quality and noise cancellation compared to your current set.

  • Our earpods have advanced noise cancellation technology that blocks out even more background noise than your current set.

  • The sound quality of our earpods is unmatched, with crystal clear highs and deep, rich bass.

  • Our earpods are also more comfortable to wear for extended periods of time, with a secure fit that stays in pla...

View all Business Development Associate interview questions
A Business Development Executive was asked
Q. What are the benefits of online learning?
Ans. 

Online learning offers flexibility, accessibility, and cost-effectiveness.

  • Allows learners to study at their own pace and schedule

  • Provides access to a wide range of courses and resources

  • Reduces costs associated with traditional classroom learning

  • Enables remote learning and collaboration

  • Offers personalized learning experiences

  • Examples: Coursera, Udemy, Khan Academy

View all Business Development Executive interview questions
A Business Development Associate was asked
Q. E-learning vs Offline Learning
Ans. 

E-learning and offline learning have their own advantages and disadvantages.

  • E-learning offers flexibility and convenience, allowing learners to access materials from anywhere at any time.

  • Offline learning provides a more traditional classroom experience with face-to-face interaction and hands-on activities.

  • E-learning can be more cost-effective and scalable, while offline learning can be more personalized and engagi...

View all Business Development Associate interview questions
🔥 Asked by recruiter 2 times
A Software Developer Intern was asked
Q. 

Rat in a Maze Problem Statement

You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N mat...

Ans. 

Find all possible paths for a rat in a maze to reach its destination, given a matrix representation of the maze.

  • Use backtracking to explore all possible paths from the starting position to the destination.

  • Keep track of the current path and explore all possible directions at each step.

  • Terminate the exploration when reaching the destination or hitting a blocked cell.

  • Return the list of valid paths found, sorted in al...

View all Software Developer Intern interview questions
🔥 Asked by recruiter 2 times
A Software Developer Intern was asked
Q. 

Merge Overlapping Intervals Problem Statement

Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interva...

Ans. 

Merge overlapping intervals and return sorted list of merged intervals.

  • Identify overlapping intervals based on start and end times

  • Merge overlapping intervals to form new intervals

  • Sort the merged intervals in ascending order of start times

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

Problem: Permutations of a String

Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

Explanation...

Ans. 

Return all permutations of a given string in lexicographically increasing order.

  • Generate all permutations of the given string using backtracking algorithm.

  • Sort the permutations lexicographically before printing them.

  • Ensure the string contains unique characters for correct output.

  • Handle multiple test cases efficiently.

  • Example: For input 'bca', output 'abc acb bac bca cab cba'.

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

Find All Pairs Adding Up to Target

Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

Input:

The first line c...
Ans. 

Given an array of integers and a target, find all pairs of elements that add up to the target.

  • Iterate through the array and for each element, check if the target minus the element exists in a hash set.

  • If it exists, add the pair to the result. If not, add the element to the hash set.

  • Handle cases where the same element is used twice in a pair.

  • Return (-1, -1) if no pair is found.

View all Software Developer Intern interview questions
Are these interview questions helpful?

Lido Learning Interview Experiences for Freshers

14 interviews found

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 70 Minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Ans. 

    Merge overlapping intervals and return sorted list of merged intervals.

    • Identify overlapping intervals based on start and end times

    • Merge overlapping intervals to form new intervals

    • Sort the merged intervals in ascending order of start times

  • Answered by AI
  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze to reach its destination, given a matrix representation of the maze.

    • Use backtracking to explore all possible paths from the starting position to the destination.

    • Keep track of the current path and explore all possible directions at each step.

    • Terminate the exploration when reaching the destination or hitting a blocked cell.

    • Return the list of valid paths found, sorted in alphabe...

  • Answered by AI
  • Q3. 

    Problem: Permutations of a String

    Given a string STR consisting of lowercase English letters, your task is to return all permutations of the given string in lexicographically increasing order.

    Explanatio...

  • Ans. 

    Return all permutations of a given string in lexicographically increasing order.

    • Generate all permutations of the given string using backtracking algorithm.

    • Sort the permutations lexicographically before printing them.

    • Ensure the string contains unique characters for correct output.

    • Handle multiple test cases efficiently.

    • Example: For input 'bca', output 'abc acb bac bca cab cba'.

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure. 
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Questions were very basic, I was given a task to sell a thing to the interviewer, and I did it with confidence.
  • Q2. Communication skills are very important.
  • Q3. Positive vibe and stress handling

Interview Preparation Tips

Interview preparation tips for other job seekers - it was not that tough
but you should not take it that easy
confidence, loud and clear voice, and importantly fluency.

I appeared for an interview in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing was 9:15AM. Platform was not very good. Questions were not well explained.

  • Q1. 

    Merge Overlapping Intervals Problem Statement

    Given a specified number of intervals, where each interval is represented by two integers denoting its boundaries, the task is to merge all overlapping interv...

  • Ans. 

    Merge overlapping intervals and return sorted list of merged intervals.

    • Identify overlapping intervals based on start and end times

    • Merge overlapping intervals to form new intervals

    • Sort the merged intervals in ascending order of start times

  • Answered by AI
  • Q2. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Recursively try moving in all directions (up, down, left, right) until reaching the destination.

    • Return the valid paths as a list of strings sorted in alphabetical order.

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPALido Learning interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, PointersTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare maximum algorithms.
Tip 2 : Deep knowledge of data structure.
Tip 3 : OOPS is must.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Mention only your own projects.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Assignment 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. 

    Given an array of integers and a target, find all pairs of elements that add up to the target.

    • Iterate through the array and for each element, check if the target minus the element exists in a hash set.

    • If it exists, add the pair to the result. If not, add the element to the hash set.

    • Handle cases where the same element is used twice in a pair.

    • Return (-1, -1) if no pair is found.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Birla Institute of Technology, Mesra. Eligibility criterianoLido Learning interview preparation:Topics to prepare for the interview - Data structures, Big O Notation, Trees Sorting and search algorithms, HeapsTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Have projects on your resume.
Tip 2 : Good to have internships
Tip 3 : Practice a lot

Application resume tips for other job seekers

Tip 1 : Have good projects
Tip 2 : Have knowledge of everything you wrote

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Sell me the same set set of earpods which I already have
  • Ans. 

    Our earpods offer superior sound quality and noise cancellation compared to your current set.

    • Our earpods have advanced noise cancellation technology that blocks out even more background noise than your current set.

    • The sound quality of our earpods is unmatched, with crystal clear highs and deep, rich bass.

    • Our earpods are also more comfortable to wear for extended periods of time, with a secure fit that stays in place du...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fluent when you speak to the interviewer and Don't get confused ,have confidence

I applied via LinkedIn and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself.
  • Q2. Any internship you've done? If yes then tell me about it in brief.
  • Q3. Where do you see yourself in 5 years?
  • Q4. Why you want to be a part of Lido Learning?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest and confident while talking OR answering the questions. Give it your best shot and try not to be nervous. It's not that difficult as it seems to be. All the best.

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about your self?
  • Q2. What if a child has eye sight and you need to convince the parent to join him in the course offered
  • Q3. E-learning vs Offline Learning
  • Ans. 

    E-learning and offline learning have their own advantages and disadvantages.

    • E-learning offers flexibility and convenience, allowing learners to access materials from anywhere at any time.

    • Offline learning provides a more traditional classroom experience with face-to-face interaction and hands-on activities.

    • E-learning can be more cost-effective and scalable, while offline learning can be more personalized and engaging.

    • Bo...

  • Answered by AI
  • Q4. Convince a parent in any of the course you wish.
  • Ans. 

    I would highlight the course's benefits, align it with the child's interests, and address any concerns the parent may have.

    • Discuss the course's curriculum and how it aligns with the child's interests, e.g., if the child loves science, emphasize hands-on experiments.

    • Share success stories or testimonials from other parents and children who have benefited from the course.

    • Highlight the skills the child will gain, such as c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself & tell the positive perspective

I applied via LinkedIn and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. About yourself 2. Brief about Lido Learning 3. Case Study

Interview Preparation Tips

Interview preparation tips for other job seekers - There where 2 rounds of interview, it was quite easy but a candidate must be confident with his/her answers and must be fluent in any language they are comfortable with, its important that he/she must be convincing and as the job role is MA its very important how a candidate speaks

English Tutor Interview Questions & Answers

user image Anonymous

posted on 22 Jul 2021

I applied via Job Portal and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. After a phone interview on basic personal questions, a demo session with the HR was scheduled. I had recieved a ppt of a lesson, which I had to deliver.
  • Q2. What are your work experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - While delivering the demo class, have a good and bright energy and make it interactive. You will be judged on your teaching skills. They way you involve The students, and conduct The session. Your overall energy.
The ppt provided by lido will have speaker notes to guide you. Just follow that. The whole process took about 15 minutes.

I applied via Company Website and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. HR ask how to handle the rejection and do sales.
  • Q2. What is the benifit of online learning
  • Ans. 

    Online learning offers flexibility, accessibility, and cost-effectiveness.

    • Allows learners to study at their own pace and schedule

    • Provides access to a wide range of courses and resources

    • Reduces costs associated with traditional classroom learning

    • Enables remote learning and collaboration

    • Offers personalized learning experiences

    • Examples: Coursera, Udemy, Khan Academy

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly prepare ourself before the interview and don't hesitate during the interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 Lido Learning?
Ask anonymously on communities.

Lido Learning Interview FAQs

How many rounds are there in Lido Learning interview for freshers?
Lido Learning interview process for freshers usually has 2 rounds. The most common rounds in the Lido Learning interview process for freshers are Resume Shortlist, Technical and HR.
How to prepare for Lido Learning interview for freshers?
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 Lido Learning. The most common topics and skills that interviewers at Lido Learning expect are Communication Skills, CRM, CSS, Coding and Convincing Power.
What are the top questions asked in Lido Learning interview for freshers?

Some of the top questions asked at the Lido Learning interview for freshers -

  1. What if a child has eye sight and you need to convince the parent to join him i...read more
  2. Sell me the same set set of earpods which I already ha...read more
  3. What is the benifit of online learni...read more
What are the most common questions asked in Lido Learning HR round for freshers?

The most common HR questions asked in Lido Learning interview are for freshers -

  1. Where do you see yourself in 5 yea...read more
  2. Tell me about yourse...read more
  3. What are your strengths and weakness...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Whitehat jr Interview Questions
3.4
 • 262 Interviews
Unacademy Interview Questions
3.0
 • 217 Interviews
NxtWave Interview Questions
3.8
 • 214 Interviews
upGrad Interview Questions
3.6
 • 204 Interviews
Chegg Interview Questions
4.1
 • 160 Interviews
Skill Lync Interview Questions
3.1
 • 92 Interviews
Teachnook Interview Questions
3.1
 • 89 Interviews
LEAD School Interview Questions
3.3
 • 88 Interviews
FastInfo Interview Questions
4.1
 • 51 Interviews
BrightCHAMPS Interview Questions
3.7
 • 43 Interviews
View all

Lido Learning Reviews and Ratings

based on 364 reviews

2.2/5

Rating in categories

2.2

Skill development

2.1

Work-life balance

2.2

Salary

1.7

Job security

2.0

Company culture

2.1

Promotions

2.0

Work satisfaction

Explore 364 Reviews and Ratings
Business Development Associate
254 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Marketing Associate
150 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Business Development Executive
140 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Online Tutor
69 salaries
unlock blur

₹1.5 L/yr - ₹7 L/yr

Business Development Manager
56 salaries
unlock blur

₹5 L/yr - ₹15 L/yr

Explore more salaries
Compare Lido Learning with

BYJU'S

3.1
Compare

Vedantu

3.4
Compare

Whitehat jr

3.4
Compare

Unacademy

3.0
Compare
write
Share an Interview