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
4.2

based on 52 Reviews

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 (2)

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)

Jobs at Love In Store

View all

Interview questions from similar companies

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

I applied via Instahyre and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Coalesce, SQL Order of Execution
  • Q2. Given a table with fields(id, name, salary, managerId) find out the managers who have atleast 5 reportees under him/her.
  • Ans. 

    Use SQL query to count number of reportees for each manager and filter out those with atleast 5 reportees.

    • Write a SQL query to count number of reportees for each manager using GROUP BY clause

    • Add HAVING clause to filter out managers with atleast 5 reportees

    • Example: SELECT managerId, COUNT(id) AS num_reportees FROM table_name GROUP BY managerId HAVING num_reportees >= 5

  • Answered by AI
  • Q3. How to manage large datasets in python
  • Ans. 

    Use libraries like pandas and dask to efficiently manage large datasets in Python.

    • Use pandas library for data manipulation and analysis.

    • Use dask library for parallel computing and out-of-core processing.

    • Optimize memory usage by loading data in chunks or using data types efficiently.

    • Consider using cloud services like AWS S3 or Google BigQuery for storing and processing large datasets.

  • Answered by AI
  • Q4. Name few of the commonly used python libraries used by DA
  • Ans. 

    Some commonly used Python libraries for Data Analysts are Pandas, NumPy, Matplotlib, and Scikit-learn.

    • Pandas - used for data manipulation and analysis

    • NumPy - used for numerical computing and working with arrays

    • Matplotlib - used for data visualization

    • Scikit-learn - used for machine learning and data mining

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nineleaps Technology Solutions Data Analyst interview:
  • SQL
  • Python
Interview preparation tips for other job seekers - Focus on basics of SQL, Python and practice tricky SQL interview questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is the concept of a session in PHP?
  • Ans. 

    A session in PHP is a way to store information (variables) to be used across multiple pages.

    • Sessions are used to store user data on the server for later use

    • Sessions are identified by a unique session ID, usually stored in a cookie

    • Session data is stored on the server side, making it more secure than using cookies alone

  • Answered by AI
  • Q2. What is the difference between variables and constants in PHP?
  • Ans. 

    Variables can be changed during the execution of a script, while constants cannot be changed once they are defined.

    • Variables can be reassigned with new values, while constants cannot be changed once defined

    • Constants are defined using the define() function, while variables are assigned using the $ symbol

    • Constants are case-sensitive by default, while variables are case-insensitive

  • Answered by AI
  • Q3. What will be the output of the code below and why?
  • Ans. 

    The code will output 'Hello World!' because the variable $x is set to true.

    • The code will check if $x is true, which it is, so it will output 'Hello World!'

    • The if statement will only execute if the condition is true, in this case $x is true.

  • Answered by AI
Round 2 - Coding Test 

What are the differences between echo and print in PHP?

Interview Preparation Tips

Interview preparation tips for other job seekers - As mentioned, please prepare all questions and be ready for the live coding session.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Complete Computer Science Fundamentals like Computer networks, DBMS, Operating Systems, Linux, Data Structure and Algoritgms
  • Q2. All Linux Commands
  • Ans. 

    Linux commands are used to interact with the operating system and perform various tasks.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move files or directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as a superuser

  • Answered by AI
  • Q3. OSI models, HTTPs request codes
  • Q4. Difference b/w list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Discussion about resume, job description and role
Round 3 - Aptitude Test 

UCAT exam - 40 question - 20min

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Questions were based QMS & ISMS and past experience
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussed about past experience
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Behavior, worst personality, useless manager
  • Q2. Always keeping eyes on girls one of the worst manager

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the most concerning behaviors was exhibited by an HR manager named Shoeb Ahmed. Despite having ten years of experience, he struggled to collaborate effectively with coworkers and demonstrated inappropriate conduct towards female employees. Unfortunately, no action was taken against him, leading to our eventual departure from the company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Easy you will have enough time to solve the questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join our company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario of microservice saga pattern
  • Q2. Given an integer array segregate odd and even numbers without using another array
  • Ans. 

    Segregate odd and even numbers in an integer array without using another array

    • Iterate through the array and maintain two pointers, one for odd numbers and one for even numbers

    • Swap elements at the odd and even pointers until all odd numbers are on one side and even numbers on the other

    • Example: Input array [3, 6, 8, 5, 4], Output array [6, 8, 4, 5, 3]

  • Answered by AI

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.4k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Amazon Interview Questions
4.1
 • 5k 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.3k Interviews
Vodafone Idea Interview Questions
4.1
 • 545 Interviews
Titan Company Interview Questions
4.3
 • 145 Interviews
View all

Love In Store Reviews and Ratings

based on 52 reviews

4.2/5

Rating in categories

4.0

Skill development

4.3

Work-life balance

3.9

Salary

3.8

Job security

4.1

Company culture

4.0

Promotions

3.8

Work satisfaction

Explore 52 Reviews and Ratings
Assistant manager

Gurgaon / Gurugram

2-3 Yrs

Not Disclosed

Program Manager

Bangalore / Bengaluru

6-7 Yrs

Not Disclosed

Subject Matter Expert - FMCD

Gurgaon / Gurugram

10-20 Yrs

Not Disclosed

Explore more jobs
MIS Executive
22 salaries
unlock blur

₹2.6 L/yr - ₹4.2 L/yr

Product Executive
6 salaries
unlock blur

₹4 L/yr - ₹5.1 L/yr

National Program Manager
5 salaries
unlock blur

₹8.5 L/yr - ₹10.2 L/yr

Data Analyst
5 salaries
unlock blur

₹4.8 L/yr - ₹7.5 L/yr

Program Manager
5 salaries
unlock blur

₹6 L/yr - ₹11.4 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