Upload Button Icon Add office photos
Engaged Employer

i

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

Love In Store Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Love In Store Interview Questions and Answers

Updated 14 Jan 2025

Love In Store Interview Experiences

Popular Designations

3 interviews found

Program Manager Interview Questions & Answers

user image prasun gupta

posted on 14 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About store handle

Program Manager Interview Questions asked at other Companies

Q1. Use case scenario - in case a new engagement is awarded to Infosys, share how do you manage that Project/Program?
View answer (9)

I applied via Referral

Round 1 - One-on-one 

(2 Questions)

  • Q1. Before you go into the interview:
  • Ans. Turn off your phone use breathing techniques to calm yourself - try to remember, a few nerves are normal smile and greet your interviewer with confidence ask for some water if you need it
  • Answered Anonymously
  • Q2. In the interview, remember to:
  • Ans. Be polite and use the right language and tone for a formal situation listen to the questions and think before you begin your answers ask the interviewer to repeat or explain further if you do not understand a question be positive about your experiences. If you’ve faced difficult situations, show what you learned from them be honest and assertive ask a couple of questions when you’re given the opportunity. Choose questi...
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Arriving
Before you go into the interview:

turn off your phone
use breathing techniques to calm yourself - try to remember, a few nerves are normal
smile and greet your interviewer with confidence
ask for some water if you need it
The interview

In the interview, remember to:

be polite and use the right language and tone for a formal situation
listen to the questions and think before you begin your answers
ask the interviewer to repeat or explain further if you do not understand a question
use the STAR method to answer questions about your skills and experience
be positive about your experiences. If you’ve faced difficult situations, show what you learned from them
be honest and assertive
ask a couple of questions when you’re given the opportunity. Choose questions that make you sound keen. For example, “What opportunities are there for training with the company?” It’s best not to ask about pay or holidays at this stage
At the end of the interview, thank the employer for their time. Tell them you’re looking forward to hearing from them.

Marketing Executive Interview Questions asked at other Companies

Q1. What is Service Scape ? After going through website, what do you think, how can we make better Servicescape for B2B marketplaces throgh Brandsmith Worldwide?
View answer (3)

Supervisor Interview Questions & Answers

user image Anonymous

posted on 23 Oct 2023

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

I applied via Approached by Company and was interviewed in Apr 2023. 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 - HR 

(3 Questions)

  • Q1. Where has he worked before and his experience
  • Ans. 

    I have done my first job at Pepisco...and I got the Best Supervisor Award.

  • Answered Anonymously
  • Q2. How many years of experience do you have?
  • Ans. 

    I have 13 years of job experience

  • Answered Anonymously
  • Q3. What is the salary in that company?
  • Ans. 

    I get a salary of Rs 25000 in Pepsico.

  • Answered Anonymously
Round 3 - HR 

(2 Questions)

  • Q1. FINAL CALL CLIENT
  • Q2. Talked about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Supervisor Interview Questions asked at other Companies

Q1. Self introduction? & what is mean by eCommerce ? How it can do
View answer (10)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

Interview Questionnaire 

1 Question

  • Q1. Who is the most important person have to transform you in your life?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just speak your mind you will be selected.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Referral and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About my self

Interview Preparation Tips

Interview preparation tips for other job seekers - As you wish , can ask any type of answer and question u want

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is recursion ? what is inheritance? what is heap? write a code to find the largest element in an array?
  • Ans. 

    Recursion is a process in which a function calls itself. Inheritance is a mechanism in OOP where a class inherits properties of another class. Heap is a region of memory used for dynamic memory allocation.

    • Recursion can be used to solve problems that can be broken down into smaller sub-problems.

    • Inheritance allows for code reuse and helps in creating a hierarchy of classes.

    • Heap is used for dynamic memory allocation in la...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not loose your confidence till the end of the interview and be clear with your voice .

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Love In Store Interview FAQs

How many rounds are there in Love In Store interview?
Love In Store interview process usually has 1-2 rounds. The most common rounds in the Love In Store interview process are One-on-one Round, HR and Resume Shortlist.
How to prepare for Love In Store 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 Love In Store. The most common topics and skills that interviewers at Love In Store expect are Team Management, Client Relationship Management, Merchandising, Modern Trade and FMCG.
What are the top questions asked in Love In Store interview?

Some of the top questions asked at the Love In Store interview -

  1. FINAL CALL CLI...read more
  2. about store han...read more

Tell us how to improve this page.

Love In Store Interview Process

based on 4 interviews

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Vodafone Idea Interview Questions
4.1
 • 556 Interviews
Titan Company Interview Questions
4.3
 • 148 Interviews
View all

Love In Store Reviews and Ratings

based on 56 reviews

4.1/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.9

Salary

3.7

Job security

4.1

Company culture

3.9

Promotions

3.7

Work satisfaction

Explore 56 Reviews and Ratings
MIS Executive
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Program Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

National Program Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Love In Store with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Reliance Retail

3.9
Compare

TCS

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