Upload Button Icon Add office photos

7 Eleven

Compare button icon Compare button icon Compare

Filter interviews by

7 Eleven Interview Questions and Answers

Updated 9 Jun 2025
Popular Designations

20 Interview questions

A Procurement Coordinator was asked 7mo ago
Q. The position is mostly WFO. Are you comfortable with that?
Ans. 

Yes, I am comfortable with WFO (Work From Office) as it is the primary mode of work.

  • I have experience working in a WFO environment in my previous roles.

  • I am familiar with the expectations and responsibilities of working in an office setting.

  • I am adaptable and can easily transition between WFO and WFH (Work From Home) as needed.

View all Procurement Coordinator interview questions
An Associate Software Engineer was asked 11mo ago
Q. Given a sample database, write some nested queries.
Ans. 

Nested queries are used to retrieve data from multiple tables in a database.

  • Use subqueries to retrieve data from a nested query within the main query.

  • Use JOIN statements to combine data from multiple tables in a nested query.

  • Nested queries can be used in SELECT, INSERT, UPDATE, and DELETE statements.

View all Associate Software Engineer interview questions
A Senior Developer was asked 12mo ago
Q. How do you handle HashMap memory leaks?
Ans. 

To handle hashmap memory leak, ensure proper management of keys and values, use weak references, and periodically check for unused entries.

  • Avoid storing unnecessary data in the hashmap

  • Use weak references for keys or values if appropriate

  • Periodically check for and remove unused entries to free up memory

View all Senior Developer interview questions
A Senior Developer was asked 12mo ago
Q. Explain exception handling in detail.
Ans. 

Exception handling is a programming concept that deals with errors during program execution.

  • Exception handling allows for graceful handling of errors in a program.

  • It involves try, catch, and finally blocks to handle exceptions.

  • Examples include catching divide by zero errors or file not found exceptions.

View all Senior Developer interview questions
A Senior Developer was asked 12mo ago
Q. Design a system where two transactions must happen sequentially. Both must succeed, and if one fails, neither should be persisted; all transactions should roll back.
Ans. 

Design a system for sequential transactions with rollback on failure

  • Use a transaction manager to coordinate the two transactions

  • Implement a try-catch mechanism to handle failures and trigger rollback if needed

  • Ensure that both transactions are part of the same unit of work

View all Senior Developer interview questions
A Software Development Engineer II was asked
Q. Explain Event Bubbling in JavaScript.
Ans. 

Event bubbling is a concept in JavaScript where events triggered on a child element will also trigger on its parent elements.

  • Event bubbling is the process where an event is first captured and handled by the innermost element and then propagated to its parent elements.

  • This allows for event delegation, where a single event listener can be placed on a parent element to handle events for multiple child elements.

  • Event....

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked
Q. Implement a timer in React using useTimeout, and disable the timer after unmounting.
Ans. 

Implement timer in React using useTimeout and disable it after unmounting

  • Use useState to store the timer ID

  • Use useEffect to start the timer on component mount and clear it on unmount

  • Use clearTimeout to disable the timer when the component unmounts

View all Software Development Engineer II interview questions
Are these interview questions helpful?
A Software Development Engineer II was asked
Q. How do you implement child-parent component communication in React?
Ans. 

Implementing parent-child component relationship in React allows for data flow and interaction between components.

  • Use props to pass data from parent to child: <ChildComponent data={this.state.data} />

  • Use callback functions to send data from child to parent: <ChildComponent onChange={this.handleChange} />

  • Manage state in the parent component and pass it down to children for controlled components.

  • Example ...

View all Software Development Engineer II interview questions
A Software Engineer II was asked
Q. How do streams work in Node.JS?
Ans. 

Streams in Node.JS allow for efficient handling of data by reading or writing it in chunks rather than all at once.

  • Streams are instances of EventEmitter class in Node.JS

  • There are four types of streams in Node.JS: Readable, Writable, Duplex, and Transform

  • Streams can be used for reading files, handling HTTP requests, and processing large amounts of data efficiently

View all Software Engineer II interview questions
A Chat Support Executive was asked
Q. Tell me about how BPO works.
Ans. 

BPO stands for Business Process Outsourcing, where a company contracts out specific business tasks to a third-party service provider.

  • BPO companies handle tasks such as customer service, technical support, data entry, and more for other businesses.

  • Companies outsource these tasks to BPOs to save costs, improve efficiency, and focus on core business functions.

  • BPOs may operate onshore, nearshore, or offshore, dependin...

View all Chat Support Executive interview questions

7 Eleven Interview Experiences

20 interviews found

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

I appeared for an interview in Sep 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Node JS and React questions and snippet answers.
  • Q2. Medium DSA question on arrays
Round 2 - Technical 

(1 Question)

  • Q1. SOLID Principles, system design, LLD
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Design a system where 2 transaction should happen one after the other. Both should pass and if one fails none should be persist or eventually all txn should roll back
  • Ans. 

    Design a system for sequential transactions with rollback on failure

    • Use a transaction manager to coordinate the two transactions

    • Implement a try-catch mechanism to handle failures and trigger rollback if needed

    • Ensure that both transactions are part of the same unit of work

  • Answered by AI
  • Q2. Whats is Kafka, Partition, ConsumerGroup
  • Ans. 

    Kafka is a distributed streaming platform, Partition is a way to divide data, ConsumerGroup is a group of consumers sharing the load.

    • Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Partition is a way to divide data within a Kafka topic to allow for parallel processing and scalability.

    • ConsumerGroup is a group of consumers that work together to consume data ...

  • Answered by AI
  • Q3. Exception handling in detail
  • Ans. 

    Exception handling is a programming concept that deals with errors during program execution.

    • Exception handling allows for graceful handling of errors in a program.

    • It involves try, catch, and finally blocks to handle exceptions.

    • Examples include catching divide by zero errors or file not found exceptions.

  • Answered by AI
  • Q4. How to handle hashmap Memory leak
  • Ans. 

    To handle hashmap memory leak, ensure proper management of keys and values, use weak references, and periodically check for unused entries.

    • Avoid storing unnecessary data in the hashmap

    • Use weak references for keys or values if appropriate

    • Periodically check for and remove unused entries to free up memory

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Use all the technical jargons and terms

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There are 2 questions on array and linkedlist

Round 2 - Technical 

(2 Questions)

  • Q1. What is normalization ?
  • Ans. 

    Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • Normalization involves breaking down a database into smaller, more manageable tables.

    • It helps in reducing data redundancy by storing data in a structured manner.

    • Normalization ensures data integrity by minimizing the chances of anomalies during data manipulation.

    • There are different levels of normalization such a...

  • Answered by AI
  • Q2. Given a sample , write some nested quries.
  • Ans. 

    Nested queries are used to retrieve data from multiple tables in a database.

    • Use subqueries to retrieve data from a nested query within the main query.

    • Use JOIN statements to combine data from multiple tables in a nested query.

    • Nested queries can be used in SELECT, INSERT, UPDATE, and DELETE statements.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell about the projects you did in college
  • Ans. 

    I completed a project on optimizing supply chain processes for a local manufacturing company.

    • Researched current supply chain processes and identified areas for improvement

    • Implemented new inventory management system to reduce stockouts and excess inventory

    • Collaborated with cross-functional teams to streamline procurement processes

    • Presented findings and recommendations to company executives for implementation

  • Answered by AI
  • Q2. Tell about you understanding of supply chain in retain industry
  • Ans. 

    Supply chain in retail involves sourcing, procurement, logistics, and inventory management to ensure product availability and efficiency.

    • Sourcing: Identifying and selecting suppliers for quality products, e.g., partnering with local farmers for fresh produce.

    • Procurement: Negotiating contracts and purchasing goods at competitive prices, e.g., bulk buying seasonal items to reduce costs.

    • Logistics: Managing transportation ...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. It is mostly WFO so are you comfortable in it
  • Ans. 

    Yes, I am comfortable with WFO (Work From Office) as it is the primary mode of work.

    • I have experience working in a WFO environment in my previous roles.

    • I am familiar with the expectations and responsibilities of working in an office setting.

    • I am adaptable and can easily transition between WFO and WFH (Work From Home) as needed.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for 7 Eleven Procurement Coordinator interview:
  • Suppply chain management

Project Lead Interview Questions & Answers

user image Anonymous

posted on 9 Jun 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024, where I was asked the following questions.

  • Q1. Tell me what is Data Engineering
  • Ans. 

    Data Engineering involves designing, building, and maintaining systems for collecting, storing, and analyzing data efficiently.

    • Data engineers create data pipelines to automate data collection from various sources, such as APIs or databases.

    • They ensure data quality and integrity by implementing validation checks and cleaning processes.

    • Data engineers work with big data technologies like Apache Hadoop and Spark to process...

  • Answered by AI
  • Q2. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - I would not recommend this option; consider it only as a last resort as there is lack of job security or take an offer to match with your other prospective employer.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Asked basics of selenium and appium

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How you heared about us ?
  • Q2. Salary Negotiations
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode Easy Questions

Round 2 - Technical 

(3 Questions)

  • Q1. Event Bubbling in JS
  • Ans. 

    Event bubbling is a concept in JavaScript where events triggered on a child element will also trigger on its parent elements.

    • Event bubbling is the process where an event is first captured and handled by the innermost element and then propagated to its parent elements.

    • This allows for event delegation, where a single event listener can be placed on a parent element to handle events for multiple child elements.

    • Event.stopP...

  • Answered by AI
  • Q2. Simple question in React to implement child parent relation component
  • Ans. 

    Implementing parent-child component relationship in React allows for data flow and interaction between components.

    • Use props to pass data from parent to child: <ChildComponent data={this.state.data} />

    • Use callback functions to send data from child to parent: <ChildComponent onChange={this.handleChange} />

    • Manage state in the parent component and pass it down to children for controlled components.

    • Example of ch...

  • Answered by AI
  • Q3. Implement timer in React, useTimeout and disbale the timer after unmounting
  • Ans. 

    Implement timer in React using useTimeout and disable it after unmounting

    • Use useState to store the timer ID

    • Use useEffect to start the timer on component mount and clear it on unmount

    • Use clearTimeout to disable the timer when the component unmounts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy Interview Questions
Prepare react and javascript well

Skills evaluated in this interview

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

Normal spring bott and microservices questions

Interview Preparation Tips

Interview preparation tips for other job seekers - great, got selected, interview was easy
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about youeself

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about 7 Eleven?
Ask anonymously on communities.

7 Eleven Interview FAQs

How many rounds are there in 7 Eleven interview?
7 Eleven interview process usually has 2-3 rounds. The most common rounds in the 7 Eleven interview process are Technical, Resume Shortlist and HR.
How to prepare for 7 Eleven 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 7 Eleven. The most common topics and skills that interviewers at 7 Eleven expect are Risk Management, Oracle, Monitoring, Assurance and Sustainable Development.
What are the top questions asked in 7 Eleven interview?

Some of the top questions asked at the 7 Eleven interview -

  1. Write a query to get the customer with the highest total order value for each y...read more
  2. There are 10 million records in the table and the schema does not contain the M...read more
  3. How do you handle data pipeline when the schema information keeps changing at t...read more
How long is the 7 Eleven interview process?

The duration of 7 Eleven interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 27 interview experiences

Difficulty level

Easy 14%
Moderate 71%
Hard 14%

Duration

Less than 2 weeks 57%
2-4 weeks 29%
6-8 weeks 7%
More than 8 weeks 7%
View more

Interview Questions from Similar Companies

Me n Moms Interview Questions
4.1
 • 65 Interviews
Shubham K Mart Interview Questions
4.4
 • 65 Interviews
Alshaya Group Interview Questions
3.9
 • 46 Interviews
Best Sellers Interview Questions
4.1
 • 30 Interviews
Sales India Interview Questions
4.2
 • 27 Interviews
FNP Interview Questions
3.3
 • 25 Interviews
View all

7 Eleven Reviews and Ratings

based on 108 reviews

3.5/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.5

Salary

3.3

Job security

3.7

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 108 Reviews and Ratings
Lead Engineer
45 salaries
unlock blur

₹22 L/yr - ₹43.5 L/yr

Software Engineer
38 salaries
unlock blur

₹12.8 L/yr - ₹25.1 L/yr

Senior Software Engineer
37 salaries
unlock blur

₹12.2 L/yr - ₹40 L/yr

Software Engineer II
36 salaries
unlock blur

₹12.1 L/yr - ₹28.4 L/yr

Software Developer
30 salaries
unlock blur

₹14 L/yr - ₹26.5 L/yr

Explore more salaries
Compare 7 Eleven with

Best Sellers

4.1
Compare

Alshaya Group

3.9
Compare

Quest Retail Private Limited

4.2
Compare

Orra Fine Jewellery

3.5
Compare
write
Share an Interview