Upload Button Icon Add office photos

Target

Compare button icon Compare button icon Compare

Filter interviews by

Target Interview Questions, Process, and Tips for Freshers

Updated 28 Feb 2025

Top Target Interview Questions and Answers for Freshers

View all 8 questions

Target Interview Experiences for Freshers

Popular Designations

13 interviews found

Software Engineer Interview Questions & Answers

user image Saketh Ram Reddy M

posted on 14 Jan 2015

Interview Questionnaire 

14 Questions

  • Q1. Why do you want to come to Software profile when you studied Chemical Engineering?
  • Ans. 

    I realized my passion for coding during my Chemical Engineering studies and pursued it further through self-learning and projects.

    • Discovered passion for coding during Chemical Engineering studies

    • Pursued coding through self-learning and projects

    • Believe software engineering offers more opportunities for growth and impact

  • Answered by AI
  • Q2. Future Plans?
  • Q3. Weaknesses?
  • Q4. Name a situation where you planned something but due to some other problems you have to adjust in the end?
  • Ans. 

    While planning a project, I had to adjust the timeline due to unexpected delays in the delivery of hardware components.

    • Planned a project with a specific timeline

    • Ordered necessary hardware components

    • Delivery of hardware components was delayed

    • Adjusted the timeline to accommodate the delay

    • Ensured that the project was completed successfully despite the delay

  • Answered by AI
  • Q5. Name a situation where you had to change your behaviour according to situation?
  • Ans. 

    During a team project, I adjusted my communication style to better collaborate with a team member.

    • I noticed that my team member preferred more frequent check-ins and updates than I was used to.

    • I adapted by scheduling regular meetings and sending progress updates more frequently.

    • This helped us work more effectively together and complete the project on time.

  • Answered by AI
  • Q6. Name a situation where you had to deal with 2-3 different groups?
  • Ans. 

    As a project lead, I had to coordinate with the development, testing, and design teams to ensure timely delivery of a product.

    • Coordinated with development team to ensure timely completion of coding tasks

    • Worked with testing team to ensure proper testing and bug fixing

    • Collaborated with design team to ensure product met client's expectations

  • Answered by AI
  • Q7. Name a situation where you were part of group and made difference?
  • Ans. 

    I led a team to develop a new feature for our company's flagship product.

    • Identified the need for the feature through customer feedback

    • Convinced the team and management to prioritize the feature

    • Coordinated with designers, developers, and testers to deliver the feature on time

    • Received positive feedback from customers and increased revenue for the company

  • Answered by AI
  • Q8. Name a situation where you took an initiative?
  • Ans. 

    I initiated a project to automate the testing process for our team.

    • Identified the need for automation to save time and improve accuracy

    • Researched and evaluated different testing tools

    • Presented the proposal to the team and got their buy-in

    • Implemented the automation process and trained the team on its usage

  • Answered by AI
  • Q9. Give an experience of working as part of a team?
  • Ans. 

    Worked as part of a team in developing a mobile application.

    • Collaborated with team members to define project requirements

    • Assigned tasks and tracked progress using project management tools

    • Conducted code reviews and provided feedback to team members

    • Resolved conflicts and ensured timely delivery of project milestones

  • Answered by AI
  • Q10. Name situation where you had to prepare for a speech for a special group of people?
  • Ans. 

    Prepared a speech for a group of high school students on the importance of computer science.

    • Researched the audience to understand their interests and level of knowledge

    • Created an engaging presentation with relatable examples

    • Practiced the speech multiple times to ensure smooth delivery

    • Encouraged questions and feedback from the audience

    • Provided additional resources for those interested in pursuing computer science

  • Answered by AI
  • Q11. Focussed more about my 3rd year intern where I developed an application using VBA for STP
  • Q12. Questions about Android and e-commerce
  • Q13. Then asked about my football interests(I said to him I am football blogger), so asked me to explain few articles which I wrote
  • Q14. All about my resume, my BTP

Interview Preparation Tips

Round: Resume Shortlist
Experience: I alotted around 3-4 days for Resume Preparation. This is very important step,especially for companies with Consultancy profile. I referred to some of my seniors resumes to get to know the format and the grammar used,especially framing of sentences.
Tips: Once your resume is prepared, don't forget to collect feedback about it from your seniors and even from some of your wing mates. Also, get to know about difference between resumes for core and non-core profiles

Round: Test
Experience: First Section was simple aptitude(20 Question),were very simple.Second Section was Programming(10 questions), were bit questions related to theory. Don't remember properly but few questions related to Binary tree were asked I guessThird section was Coding(1 question),it was simple. Question-Code a program which gives output as '1' when the number given as input can be expressed as "p^q"(where p,q are integers) and as '0' if otherwise.
Tips: Just,general CAT preparation is enough for aptitude.Regarding Coding, even knowing any 1 language is enough. Just practice few basic coding questions online and even sorting algorithms
Duration: 60 minutes
Total Questions: 31

Round: Interview
Experience: The HR interview was not easy, some of the questions were really unexpected. Such type of HR questions were not asked in any of previous HR interviews(of other companies) I attended to.
Tips: For most of the questions asked above, you can find answers from your P.O.R's(Position of Responsibilities) which you have done.Take HR round seriously and prepare for it before placements start(avoid last minute preparation).

Round: Interview
Experience: This was very comfortable, I connected very well with interviewer,especially when we were discussing about footbal as he was also a football enthusiast. I also prepared few things related to e-commerce which helped
Tips: Prepare and get to know about e-commerce field, general problems faced in it these days

Round: Interview
Experience: Was easy
Tips: Just prepare properly about everything written in resume,mainly 3rd year intern and BTP or any other projects

General Tips: Just follow all the tips mentioned earlier,avoid last minute preparation, prepare well in advance. Don't lose hope or get depressed during placement period if you fail in your initial few interviews
College Name: IIT Madras
Motivation: Wanted to work in a coding or analytics profile

Top Target Software Engineer Interview Questions and Answers

Q1. Which scrolling option is the best for e-retail websites? Vertical scrolling or horizontal product scrolling or each product on a different page or something else?
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (203)

Interview Questions & Answers

user image Anonymous

posted on 21 May 2015

Interview Questionnaire 

12 Questions

  • Q1. 1) Remove Duplicate from an array
  • 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

  • Answered by AI
  • Q2. 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 complexit...

  • Answered by AI
  • Q3. 3) 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

  • Answered by AI
  • Q4. 4) Given a number N find the nearest perfect square
  • Q5. 5) Questions about my projects
  • Q6. 1) Problems faced during the project
  • Ans. 

    We faced several problems during the project.

    • Lack of communication among team members

    • Unforeseen technical difficulties

    • Budget constraints

    • Tight deadlines

    • Scope creep

    • Client changes in requirements

  • Answered by AI
  • Q7. 2) Biggest achievement of life
  • Ans. 

    Overcoming personal challenges and achieving academic success

    • Graduating with honors despite facing financial difficulties

    • Overcoming a learning disability to excel academically

    • Being accepted into a prestigious graduate program

    • Publishing research in a respected academic journal

    • Receiving recognition and awards for academic achievements

  • Answered by AI
  • Q8. 3) And some 3-4 more questions( Don’t Remember exactly)
  • Q9. 4) Questions related to resume(About 4-5)
  • Q10. 5) Was asked my favourite subject in my department( Not CS )
  • Q11. 6) Questions on how would I use that knowledge in Retail Industry
  • Q12. 7) And a few more Questions from my Resume( Don’t Remember Exactly)

Interview Preparation Tips

Round: Test
Experience: ONLINE ROUND

31 Questions in 60 minutes.

30 Quantitative and Computer Fundamentals Questions

1 Coding Question:

Obtain the number of Trailing zeroes in the factorial of a given number N.About 27 students were Shortlisted for interviews after this
Duration: 60 minutes
Total Questions: 31

Round: Technical Interview
Experience: 1) Remove Duplicate from an array.

2) Explain Merge Sort and Quick Sort.

3) What Data Structure does Quick Sort remind you of?

4) Given a number N find the nearest perfect square.

eg:

i/p : 17

o/p : 16

5) Questions about my projects.

Round: HR Interview
Experience: 1) Problems faced during the project.

2) Biggest achievement of life.

3) And some 3-4 more questions( Don’t Remember exactly)4) Questions related to resume(About 4-5).

5) Was asked my favourite subject in my department( Not CS ).

6) Questions on how would I use that knowledge in Retail Industry.

7) And a few more Questions from my Resume( Don’t Remember Exactly).Overall Experience was Very Good and the Interviewers were the very friendly.

College Name: NA

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. How will you resolve a conflict arises between the members of the project you are currently working on?
  • Ans. 

    I will listen to both parties, identify the root cause, and facilitate a discussion to find a mutually agreeable solution.

    • Listen to both parties and understand their perspectives

    • Identify the root cause of the conflict

    • Facilitate a discussion to find a mutually agreeable solution

    • Encourage compromise and collaboration

    • Document the resolution and follow up to ensure it is implemented

  • Answered by AI
  • Q2. 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 on a t...

  • Answered by AI
  • Q3. How do you feel about corporate environment?
  • Ans. 

    I am comfortable in a corporate environment and appreciate the structure and opportunities for growth.

    • I appreciate the clear expectations and guidelines provided in a corporate environment.

    • I value the opportunities for professional development and advancement.

    • I understand the importance of teamwork and collaboration in achieving company goals.

    • I am comfortable with the hierarchical structure and reporting relationships

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Pattern: both MCQ’s and descriptive type. Cannot remember about the marking and cut-off’s as he had to write a lot of tests during that time. 18-19 students were shortlisted for interviews. MCQ questions were mostly the ones asked in CAT exam consisting of English and logical reasoning. Few of them were related to programming. Descriptive questions included writing a program in C language.
Duration: 60 minutes

Round: Technical Interview
Experience: There were 2 rounds of technical interview. 

In first round, technical questions were asked in BTP. The project was Power aware compilers. A few HR related questions were also asked.In second round, technical questions were asked on C programming. Questions were related to Basic Data Structuring. Asked to choose a favourite course and conceptual questions were asked from it. Choose a minor course as favourite one.

Round: HR Interview
Experience: Third round was HR round. All the students who reached to this round were selected.Overall 9 students were selected by the company.

General Tips: starting earlier would have definitely help.
Skill Tips: Performance in the previous rounds is the main criteria.
College Name: IIT MADRAS

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Jobs at Target

View all

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 MS Office Tools, Excel, Management, Monitoring and Merchandising.
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. The ones i remember- Dbms: What is normalization? Different forms of normalizat...read more
  3. Give us instances where you adapted to situations quick...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 Interview Process for Freshers

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
DMart Interview Questions
3.9
 • 401 Interviews
Walmart Interview Questions
3.8
 • 386 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Future Group Interview Questions
4.3
 • 76 Interviews
Big Bazaar Interview Questions
4.2
 • 42 Interviews
View all

Target Reviews and Ratings

based on 676 reviews

4.2/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

3.8

Salary

4.2

Job security

4.3

Company culture

3.4

Promotions

3.9

Work satisfaction

Explore 676 Reviews and Ratings
Senior Specialist TCOM

Bangalore / Bengaluru

0-1 Yrs

Not Disclosed

Sr Inventory Analyst

Bangalore / Bengaluru

5-7 Yrs

₹ 8.5-12 LPA

Sr Data Scientist- Operations Research

Bangalore / Bengaluru

3-4 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
270 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
175 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
164 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
127 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Target with

Walmart

3.7
Compare

Amazon

4.1
Compare

Flipkart

4.0
Compare

Reliance Retail

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview