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

Licious Senior Product Manager Interview Questions and Answers

Updated 29 Jul 2022

Licious Senior Product Manager Interview Experiences

1 interview found

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 - One-on-one 

(2 Questions)

  • Q1. 1 quality each in a designer and a developer which you would like?
  • Ans. 

    Designer: Creativity. Developer: Attention to detail.

    • Designer: Ability to think outside the box and come up with unique solutions

    • Developer: Ability to catch even the smallest errors and ensure code quality

    • Designer: Strong visual communication skills to effectively convey ideas

    • Developer: Proficiency in coding languages and ability to learn new ones quickly

  • Answered by AI
  • Q2. How will you go about creating a recommendation platform in Licious.
  • Ans. 

    I will start by analyzing customer data and behavior to understand their preferences and needs. Then, I will work with the tech team to develop algorithms that can provide personalized recommendations.

    • Analyze customer data and behavior

    • Understand customer preferences and needs

    • Develop algorithms for personalized recommendations

    • Collaborate with tech team to implement recommendation platform

    • Continuously test and improve th

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. How do you deal with multiple priorities?
  • Ans. 

    I prioritize tasks based on their impact and urgency, and communicate with stakeholders to manage expectations.

    • Assess the impact and urgency of each task

    • Communicate with stakeholders to understand their priorities

    • Create a plan that balances competing priorities

    • Regularly review and adjust priorities as needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be aware of the big picture always. They are always after 1. The deep dive then 2. The big picture

Interview questions from similar companies

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

I appeared for an interview in Dec 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Case study Aptitude round, cars with 4 wheels, no of years it takes to exhaust all the wheels.
Round 2 - One-on-one 

(1 Question)

  • Q1. Normal questions related to experience.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2023.

Round 1 - Assignment 

Strategy Roadmap - mention strategies to increase profit per order

Round 2 - One-on-one 

(3 Questions)

  • Q1. 5 year roadmap of Netflix
  • Ans. 

    Netflix plans to focus on expanding original content, global expansion, technology innovation, partnerships, and improving user experience over the next 5 years.

    • Expand original content library to attract and retain subscribers

    • Continue global expansion to reach new markets and increase subscriber base

    • Invest in technology innovation to enhance streaming quality and personalization

    • Form strategic partnerships with content ...

  • Answered by AI
  • Q2. Explain a past project in detail
  • Q3. How will you grow user count of Amazon from x to 10x in 2 years?
  • Ans. 

    To grow user count of Amazon from x to 10x in 2 years, focus on customer acquisition, retention, and engagement strategies.

    • Implement targeted marketing campaigns to attract new users

    • Enhance user experience to increase retention rate

    • Leverage data analytics to understand user behavior and preferences

    • Expand product offerings to cater to a wider audience

    • Utilize social media and influencer partnerships for brand awareness

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Difficult interview
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Anyone success story from my work experience
  • Q2. How to improve lok sabha elections
  • Ans. 

    Implementing electronic voting machines, increasing voter education, and implementing stricter regulations on campaign financing can improve Lok Sabha elections.

    • Implement electronic voting machines to ensure accurate and efficient voting process

    • Increase voter education and awareness campaigns to encourage higher voter turnout

    • Implement stricter regulations on campaign financing to reduce corruption and influence in elec

  • Answered by AI

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 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Career path, team handling ,how much ready I am for the hustle , comfortable for long working hours

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and compose rest things will fall in place

I appeared for an interview before Apr 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Medium

It was in the mid day and since I applied for a Frontend role the discussion was majorly around data structure and bit of Javascript.
The interviewer was helping and good listener.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list without using additional space.

    • Create a dummy node to start the merged list

    • Compare the values of the two linked lists and add the smaller value to the merged list

    • Move the pointer of the merged list and the pointer of the smaller value list

    • Continue this process until one of the lists is fully traversed

    • Append the remaining elements of the other list to the me

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was more of a in depth round on the framework I'm working on and problem solving.

  • Q1. What is the event loop and what is its significance?
  • Ans. 

    The event loop is a mechanism in programming that allows for asynchronous execution of code.

    • The event loop is a key component in JavaScript's runtime environment, responsible for handling asynchronous operations.

    • It continuously checks the call stack for any pending tasks and executes them in a non-blocking manner.

    • The event loop ensures that the program remains responsive by allowing other code to run while waiting for ...

  • Answered by AI
  • Q2. Can you provide examples of output-based questions in JavaScript that utilize browser APIs?
  • Ans. 

    Output-based questions in JavaScript using browser APIs

    • Example 1: Write a script that uses the Geolocation API to display the user's current location on a map

    • Example 2: Create a program that uses the Web Audio API to play a sound when a button is clicked

    • Example 3: Develop a web page that uses the Canvas API to draw a simple animation

  • Answered by AI
  • Q3. How would you design a system to support localization in a mobile app?
  • Ans. 

    Designing a system to support localization in a mobile app

    • Use resource files to store localized strings for different languages

    • Implement a language selection feature for users to choose their preferred language

    • Utilize localization libraries or frameworks to streamline the process

    • Consider cultural differences when localizing content, such as date formats and currency symbols

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 75 Minutes
Round difficulty - Hard

It was more of a fitment/managerial round.
Didn't had any coding questions, but was asked more on approaches and optimisations.
Discussions on the project you have worked on.

  • Q1. You need to find the fastest 3 horses out of a group, given that you can only race 5 horses at a time. How would you approach this problem?
  • Ans. 

    To find the fastest 3 horses out of a group with 5 horses racing at a time, we can use a tournament style approach.

    • Divide the horses into groups of 5 and race them against each other. This will give you the fastest horse in each group.

    • Take the winners from each group and race them against each other. The top 3 horses in this final race will be the fastest 3 overall.

    • Keep track of the results and compare the timings to d

  • Answered by AI
  • Q2. How do you debug the root cause of lag on a screen?
  • Ans. 

    To debug lag on a screen, analyze code, check for memory leaks, optimize rendering, and use profiling tools.

    • Analyze code to identify any inefficient algorithms or operations causing lag.

    • Check for memory leaks that could be impacting performance.

    • Optimize rendering by reducing the number of draw calls, optimizing shaders, and minimizing overdraw.

    • Use profiling tools like Xcode Instruments or Android Profiler to identify p

  • Answered by AI
  • Q3. Can you explain the architecture of the app you have recently worked on?
  • Ans. 

    The app I recently worked on is a social media platform for sharing photos and connecting with friends.

    • The app follows a client-server architecture, with the client being the mobile app and the server handling data storage and processing.

    • The client side is built using React Native for cross-platform compatibility.

    • The server side is implemented using Node.js with a MongoDB database for storing user data and photos.

    • The a...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaNo criteriaCars24 interview preparation:Topics to prepare for the interview - Data Structures Algorithms, Javascript, System DesignTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Get your JS fundamentals right (if applying for a Frontend role, https://javascript.info/ is a good start)
Tip 2 : Apart from preparing data structures, practise on the communication skills as well (prepare your introduction, be a good listener and on spot improvisation plays key roles)

Application resume tips for other job seekers

Tip 1 : highlight projects related to the job profile in your resume and mention what was your contribution in them precisely in 1/2 lines.
Tip 2 : Include URLs to applications/projects that you have build and your achievements/blog (if any)

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Questions were from SQL, Python, Statistics & Business Case Studies/Metrics in the form of 4-5 rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - So Key Takeaway is You have to be good with your Technical Knowledge (SQL Expert, Python, Overall Stats Knowledge) and That is not really enough. What differs a Business Analyst from other Developers/Statisticians etc. is Business acumen, Problem Solving Skills etc. To have a Business Knowledge and Understanding such that you find the problems/solutions/ Metrics and then solve them using the Technology.

I applied via LinkedIn and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How can you reduce the delivery time of the order?
  • Ans. 

    Reducing delivery time can be achieved by optimizing the supply chain, improving communication, and automating processes.

    • Analyze the supply chain and identify bottlenecks

    • Implement automation tools to streamline processes

    • Improve communication between departments and with customers

    • Use data analytics to forecast demand and plan accordingly

    • Consider outsourcing or partnering with third-party logistics providers

    • Invest in tec...

  • Answered by AI
  • Q2. Questions based on Case Studies

Interview Preparation Tips

Interview preparation tips for other job seekers - The process consisted of two rounds. First was the business analysis kind of round which included the questions like how can you reduce the delivery time of the order? The second round was technical round where the person asked the questions on SQL and Excel

I applied via IIM Jobs and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Advance SQL Questions.
  • Q2. Multiple Approaches in the SQL questions were seen. Some unconventional SQL Syntax was also asked.
  • Q3. Metrics Driven Case studies.
  • Q4. More number of solutions were seen instead of in depth implementation of 1 solution. Good Communication skills is judged.
  • Q5. Tell me something about yourself.
  • Ans. 

    I am a highly motivated and detail-oriented Business Analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Business Administration with a focus on analytics.

    • I have experience working with cross-functional teams to gather and analyze business requirements.

    • I am proficient in using tools such as Excel, SQL, and Tableau for data analysis and visualization.

    • I have successfully im...

  • Answered by AI
  • Q6. Why quit last job.
  • Ans. 

    Seeking better growth opportunities and work-life balance.

    • Limited growth prospects in previous role

    • Lack of work-life balance

    • Desire for new challenges and learning opportunities

    • Company culture misalignment

    • Relocation or commute issues

    • Better compensation or benefits elsewhere

  • Answered by AI
  • Q7. Why Meesho.
  • Ans. 

    Meesho is a leading e-commerce platform that empowers individuals to start their own online businesses.

    • Meesho provides a user-friendly platform for individuals to sell products online without any investment.

    • It offers a wide range of products from various categories, allowing sellers to cater to different customer preferences.

    • Meesho provides extensive training and support to its sellers, helping them succeed in their on...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, It's very similar to any other business analyst interview in industry.

Licious Interview FAQs

How many rounds are there in Licious Senior Product Manager interview?
Licious interview process usually has 3 rounds. The most common rounds in the Licious interview process are One-on-one Round and Resume Shortlist.
How to prepare for Licious Senior Product Manager 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 Product Management, Product Strategy, Analytical, Architecture and Team Management.
What are the top questions asked in Licious Senior Product Manager interview?

Some of the top questions asked at the Licious Senior Product Manager interview -

  1. How will you go about creating a recommendation platform in Licio...read more
  2. How do you deal with multiple prioriti...read more

Tell us how to improve this page.

Licious Senior Product Manager Salary
based on 20 salaries
₹30 L/yr - ₹50 L/yr
22% more than the average Senior Product Manager Salary in India
View more details
HUB Manager
110 salaries
unlock blur

₹2.9 L/yr - ₹5.3 L/yr

Assistant Manager
101 salaries
unlock blur

₹1.8 L/yr - ₹10 L/yr

Executive Production
41 salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

QA Executive
35 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

Territory Sales Manager
32 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Explore more salaries
Compare Licious with

BigBasket

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

Udaan

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