Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Lenskart Team. If you also belong to the team, you can get access from here

Lenskart

Compare button icon Compare button icon Compare
3.2

based on 2.9k Reviews

Filter interviews by

Lenskart Senior Software Developer Interview Questions and Answers

Updated 1 Feb 2024

Lenskart Senior Software Developer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Rain water trapped problem
  • Ans. 

    Rain water trapped problem

    • Calculate the amount of rainwater trapped between buildings or in a given landscape

    • Use two pointers approach to find the maximum height on left and right of each building

    • Subtract the height of each building from the minimum of the maximum heights to get the trapped water amount

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do some good pratice of DSA

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

I was asked a question based on strings that required BFS to solve.

Round 2 - Technical 

(1 Question)

  • Q1. Given a binary tree, do right rotation on each node.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Coding Test 

Machine coding test with a duration of 2 hr. where they'll give one simple project to build.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

MC question where they asked us to implement on our own system

Round 2 - Technical 

(1 Question)

  • Q1. Water trap problem
  • Ans. 

    The water trap problem involves finding the minimum amount of water that can be trapped between blocks.

    • Calculate the maximum height of blocks on left and right of each block.

    • Find the minimum of the two heights and subtract the height of the current block to get trapped water.

    • Sum up the trapped water for all blocks to get the total trapped water.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a medium-level DSA round

Round 2 - Coding Test 

This was also a DSA round

Round 3 - Coding Test 

This again a DSA round

Round 4 - Technical 

(1 Question)

  • Q1. Can't disclose the question because of NDA signed but it was a design round
Round 5 - One-on-one 

(1 Question)

  • Q1. This was a project discussion round
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
-

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

Round 1 - Coding Test 

Implement your own state management in React and integrate it into a React application.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction about yourself and expectation
Round 2 - Technical 

(3 Questions)

  • Q1. IOS questions and architecture question about modularisation. From resume.
  • Q2. Question Asked about memory management
  • Q3. Question about modularisation and interface design
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell us about yourself? What you bring tp the table
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2022. There were 3 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 

(2 Questions)

  • Q1. Find the index of greatest number from the array?
  • Ans. 

    To find the index of the greatest number in an array.

    • Loop through the array and compare each element with the current greatest number. If the current element is greater, update the greatest number and its index.

    • Use built-in functions like Math.max() and indexOf() to simplify the code.

  • Answered by AI
  • Q2. Sql question find the top 3 employess who have max salary ?
Round 3 - HR 

(2 Questions)

  • Q1. Tell me something about yorself?
  • Q2. Why you want to join justdial?

Skills evaluated in this interview

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round was easy for me because this round only has Basic Math, OS, Programming and English Grammar questions.
There were also two easy coding problems.

  • Q1. 

    Prime Numbers within a Range

    Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.

    Input:

    Integer N

    Output:

    Prime numbers printed on separate lines

    Example:

    Input...
  • Ans. 

    Step 1 : Run a for loop from 2 to N
    Step 2 : check each number if it is prime or not
    Step 3 : if prime then print

  • Answered Anonymously
  • Q2. 

    Form a Triangle Problem Statement

    You are given an array of integers ARR with a length of N. Your task is to determine whether it's possible to construct at least one non-degenerate triangle using the val...

  • Ans. 

    Step 1 : We will Iterate through the array and pivot each element as the first side of the triangle. Let’s say we are at ‘I’ th index, So we will pivot ‘I’th index as our first side of the triangle.

     

    Step 2 : And for the second side of the triangle, we will start exploring from the next index of ‘I’ and pivot each element from (I+1) till the end as the second side of the triangle. Let’s say we are at the ‘J’th inde...

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

This was interview round where one indiamart senior lead engineer was interviewer. Initially I was nervous but interviewer was very gentle so I was very comfortable at the middle of interview. Interview was based on my resume and some basic problem solving questions.

  • Q1. 

    Remove Character from String Task

    Given a string str and a character X, your task is to create a function that removes all occurrences of X from the given string.

    If the character X is not found in the s...

  • Ans. 
    string remove_duplicate(string str) 
    {
       	int v[256];
       	for (int i = 0; i < 256; i++) {
    		v[i] = 0;
    	}
    	string ans = "";
    	for (int i = 0; i < str.length(); i++) {
    		int asc = int(str[i]);
    		if (v[asc] == 0) {
    			ans.push_back(str[i]);
    			v[asc] = 1;
    		}
    	}
    	return ans;
    }
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NATIONAL INSTITUTE OF TECHONOLGY, Hamirpur. I applied for the job as Software Engineer in NoidaEligibility criteriaAbove 6 CGPAIndiaMart interview preparation:Topics to prepare for the interview - Data structures, Algorithms, OOPS , Operating systems, DBMS, SQL , NoSQL, Backend Development conceptsTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Practice At least 100 easy and 200 medium DS & Algorithms based questions.
Tip 2 : Make 2 to 3 good projects based on any technology you like and show them on your portfolio website or resume.
Tip 3 : Contribute to open source projects. At least make a pull request if you are able to solve the bug.

Application resume tips for other job seekers

Tip 1 : Your resume must be simple and easy to read.
Tip 2 : You should add all your experiences which you have achieved in your career.
Tip 3 : Only add 2 top projects which you like.

Final outcome of the interviewSelected

Skills evaluated in this interview

Lenskart Interview FAQs

How many rounds are there in Lenskart Senior Software Developer interview?
Lenskart interview process usually has 1 rounds. The most common rounds in the Lenskart interview process are Technical.

Tell us how to improve this page.

Lenskart Senior Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 427 Interviews
BigBasket Interview Questions
3.9
 • 348 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
JustDial Interview Questions
3.5
 • 328 Interviews
CARS24 Interview Questions
3.6
 • 322 Interviews
Info Edge Interview Questions
3.9
 • 317 Interviews
Square Yards Interview Questions
4.0
 • 197 Interviews
Uber Interview Questions
4.2
 • 163 Interviews
View all
Lenskart Senior Software Developer Salary
based on 4 salaries
₹24 L/yr - ₹25 L/yr
73% more than the average Senior Software Developer Salary in India
View more details
Store Manager
957 salaries
unlock blur

₹2.5 L/yr - ₹6.1 L/yr

Optometrist
866 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Sales Executive
540 salaries
unlock blur

₹1.3 L/yr - ₹4.5 L/yr

Sales Associate
314 salaries
unlock blur

₹1.5 L/yr - ₹5 L/yr

Assistant Manager
269 salaries
unlock blur

₹4.5 L/yr - ₹15.6 L/yr

Explore more salaries
Compare Lenskart with

Coolwinks Technologies

3.8
Compare

Specsmakers Opticians

3.9
Compare

Titan Eye Plus

4.3
Compare

GKB Opticals

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