Upload Button Icon Add office photos

Target

Compare button icon Compare button icon Compare

Filter interviews by

Target Interview Questions and Answers for Freshers

Updated 21 Jun 2025
Popular Designations

10 Interview questions

A Senior Data Scientist was asked 2w ago
Q. Given two lists, find the overlapping elements. Follow-up: How would you handle duplicates? How can you optimize for space complexity?
Ans. 

Identify overlapping elements in two lists with duplicates while minimizing space complexity.

  • Use a hash map to count occurrences of elements in both lists.

  • Iterate through the first list, checking counts in the hash map for overlaps.

  • Example: For lists [1, 2, 2, 3] and [2, 2, 4], the overlap is [2, 2].

  • Consider using a set to track seen elements for reduced space usage.

  • Example: For lists [1, 2, 3] and [3, 4, 5], the ...

View all Senior Data Scientist interview questions
A Data Engineer was asked 10mo ago
Q. Given an array nums with n objects colored red, white, or blue, sort them in-place so that objects of the same color are adjacent, with the colors in the order red, white, and blue.
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

View all Data Engineer interview questions
An Associate Software Engineer was asked
Q. Give us instances where you adapted to situations quickly?
Ans. 

I adapted quickly in various situations.

  • During my internship, I was assigned to a project that required me to learn a new programming language. I quickly adapted and was able to complete the project on time.

  • In my previous job, I was asked to take on additional responsibilities due to a colleague's sudden absence. I adapted quickly and was able to manage both my own tasks and the additional workload.

  • While working o...

View all Associate Software Engineer interview questions
A Software Developer was asked
Q. What Data Structure does Quick Sort remind you of?
Ans. 

Quick Sort reminds me of the Data Structure - Array

  • Quick Sort is a sorting algorithm that works on arrays

  • It uses the partitioning technique to divide the array into smaller sub-arrays

  • The sub-arrays are then sorted recursively using Quick Sort

  • The final sorted array is obtained by merging the sub-arrays

  • Arrays are a linear data structure that stores elements of the same type

A Software Developer was asked
Q. Given an array, remove the duplicate elements and return the array without duplicates.
Ans. 

Remove duplicates from an array of strings

  • Create a new empty array

  • Loop through the original array and check if the current element exists in the new array

  • If it doesn't exist, add it to the new array

  • Return the new array

A Software Engineer was asked
Q. What are your future plans?
Ans. 

I aim to enhance my skills, contribute to impactful projects, and eventually lead a team in innovative software development.

  • Pursue advanced certifications in cloud computing and machine learning to stay ahead in technology.

  • Contribute to open-source projects to gain experience and collaborate with other developers.

  • Aim for a leadership role within the next 5 years to mentor junior engineers and drive project success...

View all Software Engineer 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...

Are these interview questions helpful?
A Senior Data Scientist was asked 2w ago
Q. Data Structures and Algorithms - longest common prefix
Ans. 

Find the longest common prefix among an array of strings.

  • Iterate through the characters of the first string.

  • Compare each character with the corresponding character in other strings.

  • Stop when a mismatch is found or the end of any string is reached.

  • Example: For ['flower', 'flow', 'flight'], the longest common prefix is 'fl'.

  • If no common prefix exists, return an empty string.

View all Senior Data Scientist interview questions
A Data Science Intern was asked
Q. Types of recommender system
Ans. 

Recommender systems include collaborative filtering, content-based filtering, and hybrid systems.

  • Collaborative filtering: Recommends items based on user behavior and preferences.

  • Content-based filtering: Recommends items based on the features of the items and a profile of the user's preferences.

  • Hybrid systems: Combine collaborative and content-based filtering to provide more accurate recommendations.

  • Examples: Netfl...

View all Data Science Intern interview questions
A Software Engineer was asked
Q. The ones i remember- Dbms: What is normalization? Different forms of normalization. Some joins related questions. Oops: access modifiers, abstract classes
Ans. 

Questions on DBMS and OOPs concepts

  • Normalization is the process of organizing data in a database to reduce redundancy and dependency.

  • Different forms of normalization include 1NF, 2NF, 3NF, BCNF, and 4NF.

  • Join is used to combine rows from two or more tables based on a related column between them.

  • Access modifiers in OOPs are public, private, protected, and default.

  • Abstract classes are classes that cannot be instantia...

View all Software Engineer interview questions

Target Interview Experiences for Freshers

15 interviews found

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

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

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

  • Q1. Data Structures and Algorithms - longest common prefix
  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string.

    • Compare each character with the corresponding character in other strings.

    • Stop when a mismatch is found or the end of any string is reached.

    • Example: For ['flower', 'flow', 'flight'], the longest common prefix is 'fl'.

    • If no common prefix exists, return an empty string.

  • Answered by AI
  • Q2. Overlapping lists, follow up - with duplicates, with less space complexity
  • Ans. 

    Identify overlapping elements in two lists with duplicates while minimizing space complexity.

    • Use a hash map to count occurrences of elements in both lists.

    • Iterate through the first list, checking counts in the hash map for overlaps.

    • Example: For lists [1, 2, 2, 3] and [2, 2, 4], the overlap is [2, 2].

    • Consider using a set to track seen elements for reduced space usage.

    • Example: For lists [1, 2, 3] and [3, 4, 5], the overl...

  • Answered by AI

Senior Engineer Interview Questions & Answers

user image shubham kumar

posted on 27 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was basically two leetcode Questions Mainly from array with some algorithm required to apply and other from LinkedList.

Round 2 - Highl Level Design 

(2 Questions)

  • Q1. First the discussion was mainly on Projects you have worked on for first 20 minutes.
  • Q2. Then was given to Design a chat application basically a High Level. Interviewer was friendly and prompt listener.
Round 3 - Behavioral 

(2 Questions)

  • Q1. Very Detailed Project Discussion and Scenario based Questions basically your achievements in detail.
  • Q2. Then some Implementation questions related to designing and Java based and Kafka based.
Round 4 - HR 

(1 Question)

  • Q1. CTC Discussion and Expectations plus Notice period and other documents.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude and english

Round 2 - Aptitude Test 

Simulation about chats and situational questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Everything about experiences and situations
Round 4 - HR 

(1 Question)

  • Q1. Personal Life and about the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident in your skills

Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

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

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

Round 1 - Aptitude Test 

General aptitude and 2 codes

Round 2 - HR 

(2 Questions)

  • Q1. Basics of Data Analytics
  • Q2. Tell me about yourself
  • Ans. 

    I am a data science enthusiast with a background in statistics and machine learning.

    • Background in statistics and machine learning

    • Passionate about data science

    • Experience with Python and R programming languages

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Be prepared for the ML algorithms. Advanced topics preferred.
  • Q2. Types of recommender system
  • Ans. 

    Recommender systems include collaborative filtering, content-based filtering, and hybrid systems.

    • Collaborative filtering: Recommends items based on user behavior and preferences.

    • Content-based filtering: Recommends items based on the features of the items and a profile of the user's preferences.

    • Hybrid systems: Combine collaborative and content-based filtering to provide more accurate recommendations.

    • Examples: Netflix us...

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 1 Jun 2024

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

(1 Question)

  • Q1. Try to remember a time you disagreed with a co-worker. How did you deal with that situation?
  • Ans. 

    Disagreements with co-workers can be challenging, but effective communication and collaboration can lead to positive resolutions.

    • Active Listening: I made sure to listen to my co-worker's perspective fully before responding, which helped in understanding their viewpoint.

    • Open Dialogue: I initiated a calm discussion where we both expressed our opinions on the project approach, fostering a collaborative environment.

    • Finding...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just maintain eye contact and confidence throughout your interview

Interview Questions & Answers

user image Anonymous

posted on 15 Oct 2023

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

I applied via Campus Placement 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 - Aptitude Test 

It included quants and reasoning.

Round 3 - Technical 

(1 Question)

  • Q1. Got asked for life situations and also proficiency in some softwares.
Round 1 - Coding Test 

Array and Linkedlist related questions

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts, DBMS, questions related to personal projects
  • Q2. The ones i remember- Dbms: What is normalization? Different forms of normalization. Some joins related questions. Oops: access modifiers, abstract classes
  • Ans. 

    Questions on DBMS and OOPs concepts

    • Normalization is the process of organizing data in a database to reduce redundancy and dependency.

    • Different forms of normalization include 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Join is used to combine rows from two or more tables based on a related column between them.

    • Access modifiers in OOPs are public, private, protected, and default.

    • Abstract classes are classes that cannot be instantiated a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of Oops should be clear

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
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 Target?
Ask anonymously on communities.

Target Interview FAQs

How many rounds are there in Target interview for freshers?
Target interview process for freshers usually has 2-3 rounds. The most common rounds in the Target interview process for freshers are Aptitude Test, HR and One-on-one Round.
How to prepare for Target interview for freshers?
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 Excel, MS Office Tools, Management, Merchandising and Monitoring.
What are the top questions asked in Target interview for freshers?

Some of the top questions asked at the Target interview for freshers -

  1. 3) What Data Structure does Quick Sort remind you ...read more
  2. Give us instances where you adapted to situations quick...read more
  3. The ones i remember- Dbms: What is normalization? Different forms of normalizat...read more
What are the most common questions asked in Target HR round for freshers?

The most common HR questions asked in Target interview are for freshers -

  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.5/5

based on 6 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.7k Interviews
DMart Interview Questions
3.9
 • 450 Interviews
Walmart Interview Questions
3.6
 • 408 Interviews
Vishal Mega Mart Interview Questions
3.7
 • 175 Interviews
Landmark Group Interview Questions
3.9
 • 157 Interviews
Lowe's Interview Questions
4.1
 • 136 Interviews
Tesco Interview Questions
3.8
 • 136 Interviews
Shoppers Stop Interview Questions
4.1
 • 121 Interviews
Decathlon Interview Questions
3.8
 • 113 Interviews
View all

Target Reviews and Ratings

based on 755 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 755 Reviews and Ratings
Product Manager - Roundel

Bangalore / Bengaluru

4-5 Yrs

₹ 35-51 LPA

Data Analyst

Bangalore / Bengaluru

26-31 Yrs

Not Disclosed

data analyst

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
308 salaries
unlock blur

₹27 L/yr - ₹50 L/yr

Senior Software Engineer
258 salaries
unlock blur

₹23.8 L/yr - ₹44.2 L/yr

Software Engineer
235 salaries
unlock blur

₹13.4 L/yr - ₹24 L/yr

Lead Engineer
161 salaries
unlock blur

₹28.2 L/yr - ₹94 L/yr

Data Analyst
149 salaries
unlock blur

₹9.9 L/yr - ₹18 L/yr

Explore more salaries
Compare Target with

Reliance Retail

3.9
Compare

DMart

3.9
Compare

Vishal Mega Mart

3.7
Compare

Future Group

4.2
Compare
write
Share an Interview