AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Target

Compare button icon Compare button icon Compare
4.2

based on 749 Reviews

Play video Play video Video summary
  • About
  • Reviews
    749
  • Salaries
    5.3k
  • Interviews
    119
  • Jobs
    157
  • Benefits
    94
  • Photos
    -
  • Posts
    3

Filter interviews by

Target Interview Questions and Answers

Updated 11 Jun 2025
Popular Designations

60 Interview questions

A Lead Specialist was asked 3w ago
Q. How do you manage customer satisfaction scores?
Ans. 

I manage customer satisfaction scores by actively gathering feedback, analyzing data, and implementing improvements based on insights.

  • Regularly conduct customer surveys to gather feedback on their experiences.

  • Analyze customer feedback to identify trends and areas for improvement, such as response times or product quality.

  • Implement changes based on feedback, like enhancing support training to improve service qualit...

View all Lead Specialist interview questions
A Senior Data Scientist was asked 3mo ago
Q. How do decision trees work?
Ans. 

Decision trees are a flowchart-like structure used for classification and regression tasks, splitting data based on feature values.

  • Decision trees split data into subsets based on feature values, creating branches for each possible outcome.

  • Each internal node represents a feature, each branch represents a decision rule, and each leaf node represents an outcome.

  • For example, in a medical diagnosis, a decision tree mig...

View all Senior Data Scientist interview questions
A Senior Engineer was asked 4mo ago
Q. 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 ...

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. 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, lo...

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. Write an 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

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. 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 speci...

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. 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?
Ans. 

Exception handling is crucial in programming to handle errors and ensure proper execution. The 'finally' block is used to clean up resources, and throwing exceptions allows for error propagation.

  • Exception handling is used to manage errors and unexpected situations in a program.

  • The 'finally' block is used to execute code that should always run, regardless of whether an exception is thrown or not.

  • Throwing exceptions...

View all Senior Engineer interview questions
Are these interview questions helpful?
A Senior Engineer was asked 4mo ago
Q. How are distributed transactions handled in a microservice architecture?
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 caref...

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. 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.

View all Senior Engineer interview questions
A Senior Engineer was asked 4mo ago
Q. 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

View all Senior Engineer interview questions
1 2 3 4 5 6

Target Interview Experiences

119 interviews found

Senior Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Feb 2025

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?
  • Ans. 

    Exception handling is crucial in programming to handle errors and ensure proper execution. The 'finally' block is used to clean up resources, and throwing exceptions allows for error propagation.

    • Exception handling is used to manage errors and unexpected situations in a program.

    • The 'finally' block is used to execute code that should always run, regardless of whether an exception is thrown or not.

    • Throwing exceptions allo...

  • Answered by AI
    Add your answer
  • Q2. What are the differences between SQL and NoSQL databases, and can you mention some NoSQL databases that you are familiar with?
  • Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare a strong foundation in System Design, NoSQL, Microservices, and Core Java.

Senior Engineer Interview Questions asked at other Companies

Q1. What does the 'M' signify in M20, M25, and M30 grades of concrete?
View answer (66)
Anonymous

Data Analyst Intern Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2025

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
    Add your answer
  • 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
    Add your answer
  • 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.
  • Add your answer

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.

Data Analyst Intern Interview Questions asked at other Companies

Q1. Water Jug Problem Statement You have two water jugs with capacities X and Y liters respectively, both initially empty. You also have an infinite water supply. The goal is to determine if it is possible to measure exactly Z liters using thes... read more
View answer (3)
Anonymous

Fulfilment Expert Interview Questions & Answers

user image Anonymous

posted on 8 Jan 2025

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?
  • Ans. 

    I want to work at Target because of its reputation for providing excellent customer service and its commitment to employee development.

    • Target has a strong reputation for providing excellent customer service, which aligns with my own values and work ethic.

    • I appreciate Target's commitment to employee development and growth opportunities.

    • I am impressed by Target's community involvement and sustainability efforts, and I wa...

  • Answered by AI
    Add your answer
  • 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
    Add your answer
Anonymous

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...
  • Add your answer

Interview Preparation Tips

Topics to prepare for Target Data Analyst interview:
  • SQL

Data Analyst Interview Questions asked at other Companies

Q1. Write code to calculate the number of people in a room at the end of the day, given that X people enter and Y people leave continuously throughout the day.
View answer (11)
Anonymous

Product and Operations Manager Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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.
  • Ans. 

    Experienced product and operations manager with a background in leading cross-functional teams and implementing strategic initiatives.

    • Over 5 years of experience in product management and operations

    • Skilled in leading teams to successfully launch new products and improve operational efficiency

    • Strong background in data analysis and decision-making

    • Proven track record of driving revenue growth and customer satisfaction

    • Previ...

  • Answered by AI
    Add your answer
  • 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
    Add your answer

Product and Operations Manager Interview Questions asked at other Companies

Q1. How would you handle a situation where a client is facing an issue with an API due to parameter mismanagement by the engineering team?
View answer (1)
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2024

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
  • Add your answer
  • Q2. Project related indepth discussions
  • Add your answer
  • Q3. Medium level SQL and DSA
  • Add your answer
  • Q4. Sorting colors DSA problem
  • Ans. 

    Sort an array of colors in a specific order

    • Use a custom sorting function to sort the colors based on a predefined order

    • Map each color to a numerical value and sort based on that value

    • Consider using a hashmap to store the order of colors

  • Answered by AI
    Add your answer
  • Q5. In depth spark optimization question
  • Add your answer

Interview Preparation Tips

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

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)
Anonymous

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)
  • Add your answer
  • 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
    Add your answer
  • Q3. Describe the steps you take to collaborate with others to accomplish a goal. (Answer should be in Situation Behaviour and Outcome format)
  • Add your answer
  • 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
    Add your answer

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Anonymous

Data Scientist Interview Questions & Answers

user image Anonymous

posted on 26 Oct 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Array-based question

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Xgboots
  • Ans. 

    XGBoost is a popular machine learning algorithm known for its speed and performance in handling large datasets.

    • XGBoost stands for eXtreme Gradient Boosting.

    • It is an implementation of gradient boosted decision trees designed for speed and performance.

    • XGBoost is widely used in machine learning competitions and real-world applications.

    • It can handle missing data, regularization, and parallel processing efficiently.

    • XGBoost ...

  • Answered by AI
    Add your answer
  • Q2. Explain random forest
  • Ans. 

    Random forest is an ensemble learning method that builds multiple decision trees and combines their predictions.

    • Random forest is a type of ensemble learning method.

    • It builds multiple decision trees during training.

    • Each tree in the forest makes a prediction, and the final prediction is the average or majority vote of all trees.

    • Random forest is used for classification and regression tasks.

    • It helps reduce overfitting and ...

  • Answered by AI
    Add your answer
Round 3 - Technical 

(2 Questions)

  • Q1. Explain about your project
  • Add your answer
  • 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
    Add your answer

Skills evaluated in this interview

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
Anonymous

Senior Sdet Engineer Interview Questions & Answers

user image Shreya Singh

posted on 19 Nov 2024

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
  • Add your answer
  • Q2. Tell. Me about yourself
  • Add your answer
  • Q3. Why do we hire uh.
  • Add your answer
  • 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
    Add your answer
  • Q5. About company and salary and some situation based question
  • Add your answer

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

Senior Sdet Engineer Interview Questions asked at other Companies

Q1. How would you optimize an existing system that makes an API call, stores data in memory, and serves requests by searching the entire memory?
View answer (1)
Anonymous

Senior Data Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sql questions on joins, window functions etc
  • Add your answer
  • Q2. Basic statistics questions on Central tendency
  • Add your answer

Senior Data Analyst Interview Questions asked at other Companies

Q1. What is the difference between the Least Squares Method and Maximum Likelihood Estimation?
View answer (1)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about Target?
Ask anonymously on communities.
More about working at Target
  • HQ - Minneapolis, Minnesota, United States (USA)
  • Retail
  • 1k-5k Employees (India)

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 Operations, Python, SQL, Agile 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.

Target Interviews By Designations

  • Target Senior Engineer Interview Questions
  • Target Software Engineer Interview Questions
  • Target Data Analyst Interview Questions
  • Target Senior Data Analyst Interview Questions
  • Target Lead Specialist Interview Questions
  • Target Data Engineer Interview Questions
  • Target Associate Software Engineer Interview Questions
  • Target Senior Specialist Interview Questions
  • Show more
  • Target Data Scientist Interview Questions
  • Target Software Developer Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • Data Analyst Interview Questions
  • Senior Data Analyst Interview Questions
  • Intern Interview Questions
  • Business Analyst Interview Questions
  • Sales Executive Interview Questions
  • Accountant Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

4.1/5

based on 105 interview experiences

Difficulty level

Easy 18%
Moderate 74%
Hard 9%

Duration

Less than 2 weeks 69%
2-4 weeks 24%
4-6 weeks 4%
6-8 weeks 2%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Reliance Retail
Reliance Retail Interview Questions
3.9
 • 1.7k Interviews
DMart
DMart Interview Questions
3.9
 • 444 Interviews
Walmart
Walmart Interview Questions
3.6
 • 407 Interviews
Vishal Mega Mart
Vishal Mega Mart Interview Questions
3.7
 • 173 Interviews
Landmark Group
Landmark Group Interview Questions
3.9
 • 157 Interviews
Lowe's
Lowe's Interview Questions
4.2
 • 136 Interviews
Tesco
Tesco Interview Questions
3.8
 • 136 Interviews
Shoppers Stop
Shoppers Stop Interview Questions
4.1
 • 120 Interviews
Decathlon
Decathlon Interview Questions
3.8
 • 112 Interviews
Metro Cash & Carry
Metro Cash & Carry Interview Questions
4.1
 • 66 Interviews
View all

Target Reviews and Ratings

based on 749 reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.7

Salary

4.2

Job security

4.3

Company culture

3.3

Promotions

3.9

Work satisfaction

Explore 749 Reviews and Ratings
Jobs at Target
Target
Sr People Data Ops Product Manager

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Target
Sr Product Manager - Workfront

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Target
Lead Product Designer - Enterprise UX

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Explore more jobs
Target Salaries in India
Senior Engineer
312 salaries
unlock blur

₹19 L/yr - ₹48 L/yr

Senior Software Engineer
251 salaries
unlock blur

₹15.5 L/yr - ₹48 L/yr

Software Engineer
225 salaries
unlock blur

₹10 L/yr - ₹26.8 L/yr

Lead Engineer
144 salaries
unlock blur

₹28.5 L/yr - ₹94 L/yr

Data Analyst
136 salaries
unlock blur

₹6.5 L/yr - ₹19 L/yr

Explore more salaries
Compare Target with
Reliance Retail

Reliance Retail

3.9
Compare
DMart

DMart

3.9
Compare
Vishal Mega Mart

Vishal Mega Mart

3.7
Compare
Future Group

Future Group

4.2
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Target Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter