Upload Button Icon Add office photos
Engaged Employer

i

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

Licious Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Licious SDE-2 Interview Questions and Answers

Updated 7 Nov 2024

Licious SDE-2 Interview Experiences

1 interview found

SDE-2 Interview Questions & Answers

user image Saransh Sinha

posted on 7 Nov 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Database designing
  • Q2. OOPS principals in Java
  • Ans. 

    OOPS principles in Java refer to concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability to present the same interfac...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed before Sep 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 1hour
Round difficulty - Hard

  • Q1. 

    Snake and Ladder Problem Statement

    Given a 'Snake and Ladder' board with N rows and N columns, where positions are numbered from 1 to (N*N) starting from the bottom left, alternating direction each row, f...

  • Ans. 

    Find the minimum number of dice throws required to reach the last cell on a 'Snake and Ladder' board.

    • Use Breadth First Search (BFS) algorithm to find the shortest path from start to end cell.

    • Keep track of visited cells and the number of dice throws required to reach each cell.

    • Consider the presence of snakes and ladders while calculating the next possible moves.

    • Return the minimum number of dice throws to reach the last

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 1hour
Round difficulty - Hard

  • Q1.  Stack using queue

    Mvvm architecture

  • Ans. 

    Implement a stack using a queue in MVVM architecture

    • Use two queues to simulate a stack

    • Push operation: Enqueue the element to queue 1

    • Pop operation: Dequeue all elements from queue 1 to queue 2, dequeue the last element from queue 2 (which is the top of the stack)

    • Ensure proper synchronization between the two queues

    • Example: Push(1), Push(2), Pop() should return 2

  • Answered by AI
Round 3 - HR 

Round duration - 1hour
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteriaNo year gapBig Basket interview preparation:Topics to prepare for the interview - Core Java, android topics , Hacker coding test , ecommerce domain knowledge, data structure , algorithmsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : be confident
Tip 2 : always say truth about your experience
Tip 3 : don't be nervous

Application resume tips for other job seekers

Tip 1 : mentioned project u worked on 
Tip 2 : technical skills

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Blinkit user image Anonymous

posted on 20 May 2022

I was interviewed in May 2022.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was around 11 am
Environment was great, it intrigued me to join Blinkit.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Sort the array in non-decreasing order.

    • Use two pointers approach to find pairs with sum equal to 'S'.

    • Return pairs in sorted order based on first value, with smaller second value coming first.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing 11 am
Interviewer had good knowledge

  • Q1. Can you explain the activity lifecycle in Android development?
  • Ans. 

    Activity lifecycle in Android development involves various states like onCreate, onStart, onResume, onPause, onStop, onDestroy.

    • Activity is created with onCreate() method

    • Activity becomes visible with onStart() and onResume() methods

    • Activity goes into background with onPause() method

    • Activity is stopped with onStop() method

    • Activity is destroyed with onDestroy() method

  • Answered by AI
  • Q2. Can you explain the fragment lifecycle in Android development?
  • Ans. 

    Fragment lifecycle in Android involves various states like created, started, resumed, paused, stopped, and destroyed.

    • Fragments are created using the onCreateView() method.

    • Fragments go through states like created, started, resumed, paused, stopped, and destroyed based on user interactions and system events.

    • Fragment lifecycle methods include onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy().

  • Answered by AI
  • Q3. Can you explain the MVVM pattern?
  • Ans. 

    MVVM is a design pattern that separates the user interface from the business logic and data model.

    • MVVM stands for Model-View-ViewModel

    • Model represents the data and business logic

    • View represents the UI components

    • ViewModel acts as an intermediary between the Model and View, handling user input and updating the Model

    • MVVM promotes separation of concerns and easier unit testing

  • Answered by AI
Round 3 - Face to Face 

Round duration - 30 Minutes
Round difficulty - Easy

This round is cultural fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNoGrofers interview preparation:Topics to prepare for the interview - Data structures, Threading and synchronisation, Kotlin vs Java, Activities lifecycle, Fragment lifecycle, Android services, Reduce APK size, Create analytics libraryTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Prepare easy/medium level data structures questions in leetcode. Solve atleast 50 questions of multiple types like strings, arrays, tree, linked list, graph
Tip 2 : Go through Android basic questions like lifecycle, live data, MVC/mvp/ mvvm pattern, retrofit, data binding
Tip 3 : Atleast solve 5 design questions like how to build Instagram, analytics library, crashlytics

Application resume tips for other job seekers

Tip 1 : be concise 
Tip 2 : write only those keywords which you have in depth knowledge

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Dec 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.

  • Q1. 

    Binary Tree Traversals Problem Statement

    Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...

  • Ans. 

    Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.

    • Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.

    • Use level-order input to construct the Binary Tree.

    • Traverse the Binary Tree recursively to generate the required traversals.

    • Ensure proper handling of null nodes represented by -1 in the input.

    • Return the three traversals as

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

This round basically tested some concepts from Data Structures and File Manipulation .

  • Q1. 

    Intersection of Two Arrays Problem Statement

    Given two arrays A and B with sizes N and M respectively, both sorted in non-decreasing order, determine their intersection.

    The intersection of two arrays in...

  • Ans. 

    The problem involves finding the intersection of two sorted arrays efficiently.

    • Use two pointers to iterate through both arrays simultaneously.

    • Compare elements at the pointers and move the pointers accordingly.

    • Handle cases where elements are equal and update the intersection array.

    • Return the intersection array as the result.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABig Basket interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating Systems, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How can you understand the supply of restaurant in a particular area of a city ?
  • Ans. 

    To understand the supply of restaurants in a particular area of a city, we can use various methods.

    • Collect data from online directories like Yelp, Zomato, etc.

    • Conduct surveys to gather information about the number of restaurants in the area.

    • Analyze the population density and demographics of the area to estimate the demand for restaurants.

    • Check the number of restaurant permits issued by the local government.

    • Use GIS mapp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand any city's demographics for instance. Take most busy road and assume that 70% supply will be on food -tech (MArket Standard). Open Sw / Zo and see the supply available in that area in peak time. There can be more than one way to solve for these question

I applied via Referral and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me abt yourself
  • Q2. Achievements in past

Interview Preparation Tips

Interview preparation tips for other job seekers - Give your best, go in a flow , talk truth

I applied via Recruitment Consultant and was interviewed in Jun 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Questions are about fresh department only

Interview Preparation Tips

Interview preparation tips for other job seekers - You should know about fresh department

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

Interview Questionnaire 

5 Questions

  • Q1. All questions related Warehouse and Inventory Team Management
  • Q2. Experience about warehouse
  • Ans. 

    I have 5 years of experience managing warehouse operations, including inventory control, shipping/receiving, and staff supervision.

    • Implemented efficient inventory management system to reduce errors and improve accuracy

    • Led team in achieving 99% on-time shipping rate by optimizing workflow processes

    • Trained staff on safety protocols and equipment operation to ensure compliance with OSHA regulations

  • Answered by AI
  • Q3. Vendor management, business development
  • Q4. Loss prevention
  • Q5. E commerce system

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure answer as per your experience

Interview Questionnaire 

1 Question

  • Q1. They asked 3 Coding questions and 5 MCQ all of them were very simple. One was related to fibbonaci. Another one was like there was 2d array and at i,j sum till row i and sum till j was given and all the el...

Interview Preparation Tips

Interview preparation tips for other job seekers - I got all three questions correct and also I got a call from recruiter saying that be prepared for interview at tuesday but when i tried calling, He wasn't picking it up. Overall, It was a pathetic experience.

I applied via Walk-in and was interviewed in Oct 2021. There were 5 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 Resume tips
Round 2 - HR 

(4 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.
  • Q4. What are your salary expectations?
Round 3 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.
Round 4 - Assignment 
Round 5 - One-on-one 

(1 Question)

  • Q1. Sales and target, shrink, dump,dad, inventory,

Interview Preparation Tips

Interview preparation tips for other job seekers - Target and expiry checking, shrink, dump, dad, SAP, Cash handling, customer service,and Shift handling, motivated to team
Contribute & help others!
anonymous
You can choose to be anonymous

Licious Interview FAQs

How many rounds are there in Licious SDE-2 interview?
Licious interview process usually has 2 rounds. The most common rounds in the Licious interview process are Coding Test and Technical.
How to prepare for Licious SDE-2 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 Licious. The most common topics and skills that interviewers at Licious expect are Javascript, Mobile Application Development and React Native.
What are the top questions asked in Licious SDE-2 interview?

Some of the top questions asked at the Licious SDE-2 interview -

  1. OOPS principals in J...read more
  2. Database design...read more

Recently Viewed

SALARIES

IndustryBuying.com

SALARIES

Licious

SALARIES

Panasonic

SALARIES

Apple

SALARIES

Apple

SALARIES

Apple

SALARIES

HP India

INTERVIEWS

Licious

No Interviews

SALARIES

Apple

No Salaries

JOBS

Apple

No Jobs

Tell us how to improve this page.

Licious SDE-2 Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Udaan Interview Questions
3.9
 • 333 Interviews
CARS24 Interview Questions
3.6
 • 329 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Blinkit Interview Questions
3.7
 • 178 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
Paisabazaar.com Interview Questions
3.4
 • 139 Interviews
Urban Company Interview Questions
3.4
 • 134 Interviews
View all
Licious SDE-2 Salary
based on 7 salaries
₹23.8 L/yr - ₹34 L/yr
19% less than the average SDE-2 Salary in India
View more details

Licious SDE-2 Reviews and Ratings

based on 2 reviews

3.3/5

Rating in categories

1.6

Skill development

3.3

Work-life balance

3.0

Salary

3.3

Job security

3.0

Company culture

2.3

Promotions

2.3

Work satisfaction

Explore 2 Reviews and Ratings
HUB Manager
109 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
101 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Executive
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Production
36 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Sales Manager
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Licious with

BigBasket

3.9
Compare

FreshToHome

3.5
Compare

ZappFresh.com

3.0
Compare

Blinkit

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