Upload Button Icon Add office photos

Target

Compare button icon Compare button icon Compare

Filter interviews by

Target Interview Questions and Answers

Updated 15 Jul 2025
Popular Designations

70 Interview questions

A Senior Software Engineer was asked 3w ago
Q. What is the process for uploading 1 GB of data using an API, and how would one create a robust API for this task?
Ans. 

Uploading 1 GB of data via API requires chunking, error handling, and efficient data transfer methods.

  • Use chunked uploads: Split the 1 GB file into smaller chunks (e.g., 10 MB each) to facilitate easier uploads.

  • Implement resumable uploads: Allow users to resume uploads from the last successfully uploaded chunk in case of interruptions.

  • Use a reliable transfer protocol: Consider using HTTP/2 or WebSocket for better ...

View all Senior Software Engineer interview questions
A Senior Engineer was asked 6mo ago
Q. What are the ACID properties implemented in your project, and can you provide a brief overview of the CAP Theorem?
Ans. 

ACID properties ensure data integrity in transactions. CAP Theorem states that a distributed system can only guarantee two out of three: Consistency, Availability, Partition Tolerance.

  • ACID properties: Atomicity, Consistency, Isolation, Durability

  • Example: In a banking application, a transfer of funds should be atomic, consistent, isolated, and durable

  • CAP Theorem: Consistency, Availability, Partition Tolerance - a d...

View all Senior Engineer interview questions
A Senior Engineer was asked 6mo ago
Q. What is the difference between Comparable and Comparator in Java? And how to Implement in Collections.
Ans. 

Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java Collections.

  • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

  • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.

  • To implement Comparable, the class needs to override the co...

View all Senior Engineer interview questions
A Product Operations Analyst was asked 11mo ago
Q. What aggregated SQL functions you use on a daily basis? What is diff between UNION & UNION ALL? What is cross join. Max no rows in cross join of two 3x3 tables?
Ans. 

Aggregated SQL functions used daily include COUNT, SUM, AVG, MAX, MIN. UNION combines results from two or more SELECT statements. UNION ALL includes all rows, even duplicates. Cross join combines every row from one table with every row from another.

  • Aggregated SQL functions: COUNT, SUM, AVG, MAX, MIN

  • UNION vs UNION ALL: UNION removes duplicates, UNION ALL includes all rows

  • Cross join: combines every row from one tabl...

View all Product Operations Analyst interview questions

What people are saying about Target

View All
an operations manager
2w
Indian woman's $1300 Target run ends in shoplifting bust
An Indian woman allegedly spent over seven hours in a Target store, grabbing items worth $1,300 (Rs 1.1 lakh) and then tried to walk out without paying. The incident on May 1st went viral after a Target employee confronted her. Following this, the US Embassy in India warned that assault, theft, or burglary in the US could lead to visa revocation. The advisory was issued after the Illinois Target incident.
Got a question about Target?
Ask anonymously on communities.
A BIM Architect was asked
Q. Softwares that you've worked on
Ans. 

I have worked on various BIM softwares including Revit, AutoCAD, Navisworks, and Tekla Structures.

  • Revit

  • AutoCAD

  • Navisworks

  • Tekla Structures

View all BIM Architect interview questions
A Software Engineer was asked
Q. Reverse a linked list two sum indexin no sql vs sql access specifiers
Ans. 

The question is about reversing a linked list.

  • Iterative approach: Use three pointers to reverse the links between nodes.

  • Recursive approach: Recursively reverse the rest of the list and then fix the links.

  • Example: Given a linked list 1 -> 2 -> 3 -> 4, the reversed list will be 4 -> 3 -> 2 -> 1.

View all Software Engineer interview questions

Target HR Interview Questions

44 questions and answers

Q. What do you know about this role?
Q. Can you provide a self-introduction?
Q. Why do you want to hire you?
A Production Analyst was asked
Q. Difference Between Clustered & Non Clustered Indexes Explain the Architecture of Postgres SQL Questions on Window Functions & Joins Theory Questions on Python & Pandas
Ans. 

Clustered indexes physically order the data in the table, while non-clustered indexes store a separate copy of the data sorted by the indexed column.

  • Clustered indexes determine the physical order of data in the table, making retrieval faster for range queries.

  • Non-clustered indexes store a separate copy of the data sorted by the indexed column, allowing for faster retrieval of specific rows.

  • Example: In a table with...

View all Production Analyst interview questions
Are these interview questions helpful?
An Intern was asked
Q. 4.Difference between tuple and list What should we use instead of dictionary when the key have multiple values?
Ans. 

Tuples are immutable and ordered while lists are mutable and unordered. Use a defaultdict instead of a dictionary when the key has multiple values.

  • Tuples are defined with parentheses while lists are defined with square brackets.

  • Tuples cannot be modified once created while lists can be modified.

  • A defaultdict is a subclass of dictionary that provides a default value for a nonexistent key.

  • Example: defaultdict(list) c...

View all Intern interview questions
A Media Analyst was asked
Q. Do you know sem, SMM
Ans. 

Yes, I know SEM and SMM.

  • SEM stands for Search Engine Marketing, which involves paid advertising on search engines like Google.

  • SMM stands for Social Media Marketing, which involves promoting products or services on social media platforms like Facebook, Twitter, etc.

  • Both SEM and SMM are important digital marketing strategies that can help businesses reach their target audience and increase their online visibility.

View all Media Analyst interview questions
A Software Developer was asked
Q. 2) Explain Merge Sort and Quick Sort
Ans. 

Merge Sort and Quick Sort are two popular sorting algorithms used to sort arrays.

  • Merge Sort divides the array into two halves, sorts them recursively, and then merges them back together.

  • Quick Sort selects a pivot element, partitions the array around the pivot, and then recursively sorts the two resulting sub-arrays.

  • Merge Sort has a worst-case time complexity of O(nlogn), while Quick Sort has a worst-case time comp...

Target Interview Experiences

122 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(6 Questions)

  • Q1. What is the role of exception handling in programming, and how is the 'finally' block used in this context, as well as the process of throwing exceptions?
  • Q2. What are the differences between SQL and NoSQL databases, and can you mention some NoSQL databases that you are familiar with?
  • Q3. What are the ACID properties implemented in your project, and can you provide a brief overview of the CAP Theorem?
  • Ans. 

    ACID properties ensure data integrity in transactions. CAP Theorem states that a distributed system can only guarantee two out of three: Consistency, Availability, Partition Tolerance.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Example: In a banking application, a transfer of funds should be atomic, consistent, isolated, and durable

    • CAP Theorem: Consistency, Availability, Partition Tolerance - a distri...

  • Answered by AI
  • Q4. Database disaster recovery?
  • Ans. 

    Database disaster recovery involves strategies to restore data and maintain operations after a failure or data loss.

    • Regular backups: Schedule daily or weekly backups to ensure data can be restored.

    • Redundancy: Use replication to maintain copies of the database in different locations.

    • Testing recovery plans: Regularly test disaster recovery plans to ensure they work effectively.

    • Use of cloud services: Leverage cloud-based ...

  • Answered by AI
  • Q5. What is the difference between Comparable and Comparator in Java? And how to Implement in Collections.
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java Collections.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class.

    • To implement Comparable, the class needs to override the compare...

  • Answered by AI
  • Q6. Implementation of Generics in Java
  • Ans. 

    Generics in Java allow for creating classes, interfaces, and methods that operate on types parameterized at compile time.

    • Generics provide type safety by allowing compile-time type checking.

    • They enable code reusability and reduce the need for casting.

    • Example: List<String> list = new ArrayList<>();

  • Answered by AI
Round 2 - Technical 

(10 Questions)

  • Q1. Can you provide the code to reverse a string using recursion?
  • Ans. 

    Code to reverse a string using recursion

    • Create a recursive function that takes a string as input

    • Base case: if the string is empty or has only one character, return the string

    • Recursive case: return the last character of the string concatenated with the result of calling the function on the substring excluding the last character

  • Answered by AI
  • Q2. How does object comparison work with specific fields?
  • Ans. 

    Object comparison with specific fields involves comparing values of selected fields between two objects.

    • Object comparison can be done by comparing the values of specific fields in two objects.

    • Fields can be selected based on unique identifiers or criteria for comparison.

    • Example: Comparing the 'name' field of two person objects to check if they are the same.

  • Answered by AI
  • Q3. How does the distributed transactions being handled in a microservice?
  • Ans. 

    Distributed transactions in microservices involve using compensating transactions and event-driven architecture.

    • Microservices typically use compensating transactions to maintain consistency across multiple services.

    • Event-driven architecture can help in coordinating distributed transactions by using events to trigger actions in different services.

    • Implementing distributed transactions in microservices requires careful de...

  • Answered by AI
  • Q4. Aggregator Pattern in Microservice
  • Ans. 

    Aggregator pattern is used in microservices architecture to combine multiple service responses into a single response.

    • Aggregator pattern helps in reducing the number of client requests by combining multiple service responses.

    • It can be implemented using a separate service or within an existing service.

    • Example: A shopping website aggregating product information from different microservices like inventory, pricing, and re...

  • Answered by AI
  • Q5. What is the implementation of the factory design pattern?
  • Ans. 

    Factory design pattern is a creational pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.

    • Factory method pattern defines an interface for creating objects, but lets subclasses decide which class to instantiate.

    • It promotes loose coupling by eliminating the need to bind application-specific classes into the code.

    • Example: A car m...

  • Answered by AI
  • Q6. What is indexing in a database, and what data structures are commonly used for indexing?
  • Ans. 

    Indexing in a database is a technique to improve the speed of data retrieval by creating a data structure that allows for quick lookup.

    • Indexing involves creating a separate data structure that contains pointers to the actual data in the database.

    • Common data structures used for indexing include B-trees, hash tables, and binary search trees.

    • Indexes can be created on one or multiple columns in a database table to speed up...

  • Answered by AI
  • Q7. What is your approach to designing a system capable of handling thousands of requests?
  • Ans. 

    My approach involves using load balancing, caching, asynchronous processing, and horizontal scaling.

    • Implement load balancing to distribute requests evenly across multiple servers.

    • Utilize caching mechanisms to store frequently accessed data and reduce response times.

    • Use asynchronous processing for long-running tasks to free up resources for handling more requests.

    • Implement horizontal scaling by adding more servers to ha...

  • Answered by AI
  • Q8. What is the CQRS pattern in microservices?
  • Ans. 

    CQRS pattern in microservices separates read and write operations for improved scalability and performance.

    • CQRS stands for Command Query Responsibility Segregation

    • It separates the read and write operations into two different models

    • Write operations update the data store, while read operations query a separate data store

    • CQRS can improve performance and scalability by allowing each model to be optimized for its specific t...

  • Answered by AI
  • Q9. What is the role of API Gateway in microservices architecture?
  • Ans. 

    API Gateway acts as a single entry point for all client requests in a microservices architecture.

    • API Gateway handles authentication, authorization, rate limiting, and routing of requests to appropriate microservices.

    • It helps in decoupling client applications from individual microservices, providing a more flexible and scalable architecture.

    • API Gateway can also perform tasks like request/response transformation, logging...

  • Answered by AI
  • Q10. Write SQL query to fetch data from two tables using joins?
  • Ans. 

    SQL query to fetch data from two tables using joins

    • Use the JOIN keyword to combine rows from two tables based on a related column

    • Specify the columns to select from each table in the SELECT statement

    • Use the ON keyword to specify the join condition

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a strong foundation in System Design, NoSQL, Microservices, and Core Java.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. 1. How do you mentor and guide a team that is lacking specific skills? 2. How do you handle conflicts in a team? 3. Have you ever worked with a difficult team member; how did you deal with him?
  • Ans. 

    Effective mentoring and conflict resolution are key to fostering a productive team environment.

    • Identify skill gaps through assessments and feedback, then create tailored training sessions.

    • Encourage peer-to-peer learning by pairing less experienced members with skilled ones.

    • Use real-world projects to apply new skills, enhancing both learning and team collaboration.

    • Address conflicts early by facilitating open discussions...

  • Answered by AI
  • Q2. 4. What criteria do you consider when selecting a dataset for analysis? 5. What is an aggregation query that calculates the average salary for each department in an Employees table, excluding employees ear...
  • Ans. 

    Key criteria for dataset selection, SQL aggregation, and JOIN queries for data analysis.

    • 1. Relevance: Ensure the dataset aligns with the analysis objectives. Example: Analyzing sales trends requires sales data.

    • 2. Quality: Check for missing values, duplicates, and inconsistencies. Example: A dataset with many null values may skew results.

    • 3. Size: Consider the dataset's size for performance. Example: Large datasets may r...

  • Answered by AI
  • Q3. The interview concluded with me asking a few questions about the role and company culture. Overall, it was a structured interview. After 2 days, I received a positive feedback and selected for the role.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Maintain confidence. 2. Utilize the STAR method to respond to behavioral questions. 3. Always articulate the approach you plan to take when addressing SQL or Python problems.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work at Target?
  • Q2. Have you had a disagreement with another employee?
  • Ans. 

    Yes, I had a disagreement with a coworker over project priorities.

    • Miscommunication led to conflicting priorities

    • Discussed the issue calmly and found a compromise

    • Implemented better communication strategies to prevent future disagreements

  • Answered by AI

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Round 1: This is an initial screening round. You will be tested on the foundation of multiple technologies. SQL (Majority), Python, Visualization skillset and some basic statistics. Round 2 : Advance t...

Interview Preparation Tips

Topics to prepare for Target Data Analyst interview:
  • SQL
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Sliding Window Maximum with Threshold
  • Ans. 

    Find the maximum value in a sliding window of an array with a specified threshold.

    • Use a deque to maintain indices of useful elements in the current window.

    • Remove elements from the front of the deque if they are out of the current window.

    • Pop elements from the back of the deque if they are less than the current element.

    • Check if the maximum value exceeds the threshold before adding to results.

    • Example: For array [1, 3, -1,...

  • Answered by AI
  • Q2. What is the process for uploading 1 GB of data using an API, and how would one create a robust API for this task?
  • Ans. 

    Uploading 1 GB of data via API requires chunking, error handling, and efficient data transfer methods.

    • Use chunked uploads: Split the 1 GB file into smaller chunks (e.g., 10 MB each) to facilitate easier uploads.

    • Implement resumable uploads: Allow users to resume uploads from the last successfully uploaded chunk in case of interruptions.

    • Use a reliable transfer protocol: Consider using HTTP/2 or WebSocket for better perfo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good beofre applying, prepare DSA, LLD and Java Questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. How would you handle a situation where a client is facing an issue with an API due to parameter mismanagement by the engineering team?
  • Ans. 

    I would address the issue by coordinating with the engineering team to identify and rectify the parameter mismanagement.

    • Communicate with the engineering team to understand the root cause of the parameter mismanagement

    • Work with the client to gather specific details about the issue and its impact on their operations

    • Collaborate with the engineering team to implement a solution and ensure proper testing before deployment

    • Pr...

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

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. It was hiring drive face to face interview
  • Q2. Project related indepth discussions
  • Q3. Medium level SQL and DSA
  • Q4. Sorting colors DSA problem
  • Q5. In depth spark optimization question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL, Python and Spark

Skills evaluated in this interview

Analyst Interview Questions & Answers

user image Darshan.N

posted on 19 Jan 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Aptitude Test 

Advance excel... Will check your logical thinking skills.

Round 2 - One-on-one 

(4 Questions)

  • Q1. Tell me about your relevant experience and what makes you qualified for this position. (Answer should be in Situation, Behaviour and Outcome format)
  • Q2. Describe how you partner with someone who holds opinions that often differ from your own. (Answer should be in Situation Behaviour and Outcome format)
  • Ans. 

    I actively listen, seek common ground, and collaborate to find solutions.

    • Actively listen to understand their perspective

    • Seek common ground and areas of agreement

    • Collaborate to find mutually beneficial solutions

    • Respectfully communicate and discuss differences

    • Focus on the end goal and shared objectives

  • Answered by AI
  • Q3. Describe the steps you take to collaborate with others to accomplish a goal. (Answer should be in Situation Behaviour and Outcome format)
  • Q4. Describe what you do to propose solutions that are right for the organization's guests and team members in the role you've applied to. (Answer should be in Situation Behaviour and Outcome format)
  • Ans. 

    I conduct thorough research, gather feedback, and collaborate with stakeholders to propose solutions that meet the needs of guests and team members.

    • Conduct research to understand the needs and preferences of guests and team members

    • Gather feedback from various stakeholders to identify pain points and areas for improvement

    • Collaborate with cross-functional teams to brainstorm and develop solutions that address the identif...

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array-based question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Xgboots
  • Q2. Explain random forest
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about your project
  • Q2. Explain the sequence to sequence models and transformers
  • Ans. 

    Sequence to sequence models are used in natural language processing to convert input sequences into output sequences.

    • Sequence to sequence models are commonly used in machine translation tasks, where the input is a sentence in one language and the output is the translated sentence in another language.

    • Transformers are a type of sequence to sequence model that use self-attention mechanisms to weigh the importance of diffe...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Its quit easy round in which its contain very easy question in the process

Round 2 - Coding Test 

Ita contain average coding question level of leetcode.. If constantly solving leetcode question it get more chances to select.

Round 3 - HR 

(5 Questions)

  • Q1. Tell me about yourself and the question comes only to ur resume.. Its quit easy round all question are expected
  • Q2. Tell. Me about yourself
  • Ans. 

    Experienced Senior SDET with a strong background in automation testing, CI/CD, and a passion for quality assurance in software development.

    • Over 8 years of experience in software testing and development, focusing on automation frameworks.

    • Proficient in tools like Selenium, TestNG, and JUnit for creating robust test scripts.

    • Led a team to implement CI/CD pipelines using Jenkins, reducing deployment time by 30%.

    • Worked close...

  • Answered by AI
  • Q3. Why do we hire uh.
  • Ans. 

    I bring extensive experience in automation, a strong understanding of testing methodologies, and a passion for quality assurance.

    • Proven track record of developing robust automated test frameworks, such as using Selenium and TestNG for web applications.

    • Experience in leading QA teams, mentoring junior engineers, and fostering a culture of quality within the organization.

    • Strong analytical skills that enable me to identify...

  • Answered by AI
  • Q4. What are the quality which enhance yourself
  • Ans. 

    Some qualities that enhance myself include adaptability, problem-solving skills, and continuous learning.

    • Adaptability: I am able to quickly adjust to new situations and environments, allowing me to thrive in dynamic work settings.

    • Problem-solving skills: I excel at analyzing complex problems and finding effective solutions, which is crucial in the field of software testing.

    • Continuous learning: I am committed to staying ...

  • Answered by AI
  • Q5. About company and salary and some situation based question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep confidence on ur self it will help to make positive.. And don't take stress much for not getting.. Just believe in yourself

Target Interview FAQs

How many rounds are there in Target interview?
Target interview process usually has 2-3 rounds. The most common rounds in the Target interview process are One-on-one Round, Technical and HR.
How to prepare for Target 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 Target. The most common topics and skills that interviewers at Target expect are Agile, Python, SQL, Operations and Project Management.
What are the top questions asked in Target interview?

Some of the top questions asked at the Target interview -

  1. Which scrolling option is the best for e-retail websites? Vertical scrolling or...read more
  2. We add a lot of products and their descriptions on a laptop webpage, it will ge...read more
  3. What factors can you think of which will determine the pricing of product on ou...read more
What are the most common questions asked in Target HR round?

The most common HR questions asked in Target interview are -

  1. what are your salary expectatio...read more
  2. Why should we hire y...read more
  3. Tell me about yourse...read more
How long is the Target interview process?

The duration of Target 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

4.1/5

based on 108 interview experiences

Difficulty level

Easy 17%
Moderate 75%
Hard 8%

Duration

Less than 2 weeks 70%
2-4 weeks 23%
4-6 weeks 4%
6-8 weeks 2%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.7k Interviews
DMart Interview Questions
3.9
 • 465 Interviews
Walmart Interview Questions
3.5
 • 417 Interviews
Landmark Group Interview Questions
3.9
 • 158 Interviews
Tesco Interview Questions
3.8
 • 138 Interviews
Lowe's Interview Questions
4.1
 • 137 Interviews
Shoppers Stop Interview Questions
4.0
 • 123 Interviews
Decathlon Interview Questions
3.7
 • 114 Interviews
Metro Cash & Carry Interview Questions
4.1
 • 67 Interviews
Best Sellers Interview Questions
4.1
 • 30 Interviews
View all

Target Reviews and Ratings

based on 776 reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.7

Salary

4.2

Job security

4.4

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 776 Reviews and Ratings
Sr UX Designer

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Sr Manager Site merchandising- Category

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Lead Engineer

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
320 salaries
unlock blur

₹24.2 L/yr - ₹45 L/yr

Senior Engineer
303 salaries
unlock blur

₹27.2 L/yr - ₹50 L/yr

Software Engineer
223 salaries
unlock blur

₹12.8 L/yr - ₹22.4 L/yr

Data Analyst
167 salaries
unlock blur

₹10 L/yr - ₹17.5 L/yr

Lead Engineer
166 salaries
unlock blur

₹47.1 L/yr - ₹87.2 L/yr

Explore more salaries
Compare Target with

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Vishal Mega Mart

3.7
Compare

Shoppers Stop

4.0
Compare
write
Share an Interview