Upload Button Icon Add office photos

Filter interviews by

Target Interview Questions, Process, and Tips

Updated 28 Dec 2024

Top Target Interview Questions and Answers

View all 47 questions

Target Interview Experiences

Popular Designations

111 interviews found

I applied via Naukri.com and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Introducing yourself.
  • Q2. While saying personal qualities, they asked me if you have positive attitude then explain me how you are positive thinker?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident whether you know or you doesn't know the answer. Be confident and don't let your nervousness to cover your face.

Accounts Clerk Interview Questions asked at other Companies

Q1. How was fix the error proble in systematic way ?
View answer (2)

I applied via Referral and was interviewed before Feb 2017. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I was asked to described the critical situation in my life

Interview Preparation Tips

General Tips: Testing patience level
Skills: Communication
Duration: <1 week

Senior Specialist Interview Questions asked at other Companies

Q1. Design the zabbix architecture and share how many servers are you gonna suggest the customer to have?
View answer (1)

Interview Questionnaire 

4 Questions

  • Q1. Sorting an array of strings
  • Ans. 

    Sorting an array of strings

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort

    • Compare strings using a comparison function

    • Consider case sensitivity and special characters

    • Handle empty strings or null values appropriately

  • Answered by AI
  • Q2. Bumblebee puzzle
  • Q3. Guess estimation
  • Q4. Mostly about life decisions

Interview Preparation Tips

Round: Test
Experience: Test was good. It required basic programming (not high level programming).

There was 1 coding question and 30 MCQs. MCQs were based on DS and algorithms. While the coding problem could be done with simple programming and logic.
Tips: Practice a lot of coding problems from geeksforgeeks.org and interviewbit.com
Duration: 60 minutes
Total Questions: 30+1

Round: Technical Interview
Experience: It was a pretty easy question. They just wanted to see if I can think in a proper direction if given a task. The interviewer was a sensible person (not some frustrated one who just wants to get over with it). It was a good experience.
Tips: Don't answer spontaneously. Take your time to think thoroughly, ask the interviewer relevant parameters, interact with the interviewer by telling him about your thinking process on paper (not just by talking) by writing on the paper.

Round: HR Interview
Experience: The HR of Target is a very good person. She encouraged me through every question she asked.
Tips: Just be calm. You may be asked about different experiences of your life, so take your time before answering the questions.

Skill Tips: Both requires a lot of practice and
Skills: Analytics And Coding
College Name: IIT Kanpur

Skills evaluated in this interview

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th StairsYou have been given a number of stairs. Initially, you are at the 0th stair, and you need to reach the Nth stair. Each time you can either climb one step or two steps. You are supposed to return the number... read more
View answer (5)

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 SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Target interview questions for popular designations

 Software Engineer

 (12)

 Senior Engineer

 (10)

 Data Analyst

 (7)

 fresher

 (4)

 Senior Data Analyst

 (4)

 Associate Software Engineer

 (3)

 Data Engineer

 (3)

 Cashier

 (2)

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

Get interview-ready with Top Target Interview Questions

Interview Preparation Tips

Round: Test
Experience: Relatively easy for anyone with programming experience.

Round: Technical Interview
Experience: Easy again. Anyone who has background in programming should be able to clear it.

Round: Behavioural Interview
Experience: This is what the company is looking for the most. They want to select only candidates that match their company value.
Tips: Soft skills play an important role.

Skills: Programming, Soft skills
College Name: IIT BOMBAY
Motivation: The company gave a presentation about them and their work culture. Seemed very good.

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given SumYou are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K. An array is said to have a triplet {ARR[i], ARR[j], ARR[... read more
View answer (4)

Jobs at Target

View all

Software Engineer Interview Questions & Answers

user image Eklavya Mahajan

posted on 10 Mar 2015

Interview Questionnaire 

8 Questions

  • Q1. What factors can you think of which will determine the pricing of product on our e-retail website?
  • Ans. 

    Factors affecting pricing of products on e-retail website

    • Cost of production

    • Competitor pricing

    • Demand and supply

    • Target audience

    • Marketing and advertising costs

  • Answered by AI
  • Q2. We add a lot of products and their descriptions on a laptop webpage, it will get too cluttered if we try the same for a mobile app. What things can be done differently for a webpage on mobile app?
  • Q3. 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?
  • Ans. 

    Vertical scrolling is the best option for e-retail websites.

    • Vertical scrolling is more intuitive and easier to use for most users.

    • Horizontal scrolling can be confusing and frustrating for users.

    • Each product on a different page can lead to slower load times and more clicks for users.

    • Infinite scrolling can be a good option for some e-retail websites.

    • Consider the type of products being sold and the user experience when de

  • Answered by AI
  • Q4. What was your happiest moment in life?
  • Ans. 

    My happiest moment was when I got accepted into my dream university.

    • Received the acceptance letter in the mail

    • Celebrated with family and friends

    • Felt a sense of accomplishment and excitement for the future

  • Answered by AI
  • Q5. Tell me about your internships in short
  • Ans. 

    I completed internships at two different companies, one focused on web development and the other on software testing.

    • Interned at XYZ Company as a web developer, worked on front-end development using React and back-end development using Node.js

    • Interned at ABC Company as a software tester, tested various software applications and reported bugs to the development team

  • Answered by AI
  • Q6. Strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include public speaking and time management.

    • Strengths: Problem-solving - I enjoy finding solutions to complex problems. Adaptability - I am able to quickly adjust to new situations. Teamwork - I work well in a team environment and value collaboration.

    • Weaknesses: Public speaking - I get nervous when speaking in front of large groups. Time ma...

  • Answered by AI
  • Q7. What are your interests beyond academics?
  • Ans. 

    I enjoy playing sports, reading books, and volunteering in my community.

    • Playing basketball and soccer with friends

    • Reading books on technology and self-improvement

    • Volunteering at local food banks and animal shelters

  • Answered by AI
  • Q8. You seem to have a good CPI. Why are you not going for MS or MBA? Do you intend to go for any such thing some years later?
  • Ans. 

    I believe gaining practical experience is more valuable than pursuing further education at this point in my career.

    • I have gained valuable experience through internships and projects

    • I am constantly learning and improving my skills through online courses and workshops

    • I may consider pursuing further education in the future if it aligns with my career goals

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume shortlist was CPI cutoff based mostly.
Tips: Highlight all your strong points in the resume and don't forget to make different resumes for different profiles you are targeting. Other than that, your resume is what you make of it in your 4 or 5 years of your stay here!

Round: Test
Experience: The test was common for software analyst as well as business analyst profile. So that was sort of a drawback for the people targeting business analyst profile. But most of the coding questions were easily solvable and required little knowledge of coding.
Tips: Just try to improve your aptitude skills and freshen up some basic C++ concepts - very basic ones. You'll do great!

Round: Puzzle Interview
Experience: Though I am not able to recall the puzzles asked, but they were moderate in difficulty level, plus the interviewers were helping a lot and were very friendly
Tips: Practice some basic puzzles, mostly the ones asked for coding interviews (you can search them online). Keep your calm and think thoroughly. Also, don't hesitate to ask for help whenever required. They would love to offer help more than you would like to get!

Round: Technical Interview
Experience: Since my background in coding was not that great, and I had already told them so, thus they mostly asked me strategic questions like the ones mentioned above.
Tips: Think logically and just spit out whatever comes to your mind would be the best option/strategy. They are looking for innovative answers and also a wide variety of alternatives, and then choose the best ones. Again, they will help you in case of any confusion or in case you need some example strategies.

Round: HR Interview
Experience: This round initially focused primarily on my internships. The interviewer seemed interested to know about the work done in internships, the accomplishments, the moments worth remembering from the foreign internships. Later she moved on to the hobbies, strengths, weaknesses and was quite involved with my life stories! She had a pad to note down my answers and judge abilities like communication skills, fluency, confidence in answers etc. At the end, I got the remark "This was by far the best interview I conducted" (and I was the last candidate to get interviewed!)
Tips: Answer the questions with total honesty and keep them involved with intriguing stories that depict your strengths or weaknesses. Interest them with your hobbies and be ready to answer questions on any hobby! Keep your stories prepared for the happiest moment, failures, things you would change in life etc. Read the book "64 HR interviews" and prepare answers for most of them. This round is mainly to see your confidence, your passion, your liveliness and your enthusiasm for the position.

General Tips: Most of the tips were discussed in respective questions. In general&#44; I would like to say that never lose hope no matter how hard you struggle through the first few days. The moment you lose hope, things start going the wrong way. Also, give the interviews with relaxed and calm mind, after proper sleep. Take the interviews to the direction you want them to go - it can be easily done and I can tell you that from my own experiences. Be honest, otherwise you will take the interview to the direction you don't want it to go!
Skills: Confidence, Communication skills, Logical thinking , Problem solving, Brainstorming skills, Rational thinking
College Name: IIT BOMBAY
Motivation: It is a well reputed firm&#44; a Fortune 50 company and the experience would be a good launchpad for ahead. I wanted a work-life balance slightly tilted towards "life" and Target is the company to go for that (which I came to know from my seniors, glassdoor.com etc.)
Funny Moments: There were no specific funny moments as such but overall&#44; the interviews were relaxed and the interviewers were very friendly and cheerful. So I had some great moments while sharing my hobbies (eg. I told them I like to read poems so they asked me to recite one!) etc.

Skills evaluated in this interview

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 (169)

Software Engineer Interview Questions & Answers

user image Supreet Singh

posted on 19 Jan 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: Standard resume shortlisting. Almost everyone was shortlisted for the test. You were given an option to choose between software and analyst profile.
Tips: Prepare your resume well on time. Give it a month at least. Send it over to a lot of seniors for reviews.

Round: Test
Experience: Test wa fairly easy. It had two sections. One was mental ability. I am hoping any IIT student can crack these questions. Second part was basic coding questions, 2 of them. If you know basic coding, you can solve it. Nothing fancy.
Tips: Prepare well for tests immediately after resume. Brush up basic coding commands if you expect coding questions in the test. One can do preparation on the lines of cat for these tests.

General Tips: I cannot say this enough times but you have to be patient&#44; calm and confident. You will get a job. Everyone doesn't get a job on day 1. You may also get to hear thousands of methods to prepare for jobs. Don't listen to everyone. Just choose obe or two good sources and stick to them. Else you just waste time worrying about how much you need to prepare.
Skill Tips: I prepared on a very general level for all companies. If you are fairly sure of what kind of company you want, do company specific prep.
Skills: Analytical skills, Basic coding skills
College Name: IIT BOMBAY
Motivation: The profile offered had both analytics and coding. It was like the best of both worlds for me. Also&#44; great company. Great money.

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 (169)

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 (169)

Software Engineer Interview Questions & Answers

user image B . Vishnu Bhargav

posted on 31 Aug 2015

Interview Preparation Tips

Round: Test
Experience: Quant was easy , you can do all of it . just go through the indiabix or some website before going to the exam.Coding section was also easy , just brush up your basics of C thats enough , none of the high fundae DSA was asked .
Tips: - geeksforgeeks.com  contains almost everything about coding  you need for getting placed .- if you are done with it start coding in codechef .
Duration: 1 hr minute

Skill Tips: Focus on your Study.. Revise the subject that you have studied at the time of Interview
Skills: Technical Skills
College Name: IIT Madras

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 (170)

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 Technical, One-on-one Round 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, Operations, Python, SQL 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. What factors can you think of which will determine the pricing of product on ou...read more
  3. What are the different types of joins in SQL? Describe them in bri...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

based on 57 interviews in last 1 year

Interview experience

4
  
Good
View more

People are getting interviews through

based on 61 Target interviews
Job Portal
Campus Placement
Company Website
Referral
WalkIn
38%
18%
16%
15%
3%
10% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 4.9k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Walmart Interview Questions
3.9
 • 395 Interviews
DMart Interview Questions
4.0
 • 383 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
Future Group Interview Questions
4.3
 • 74 Interviews
Big Bazaar Interview Questions
4.3
 • 42 Interviews
View all

Target Reviews and Ratings

based on 630 reviews

4.2/5

Rating in categories

4.0

Skill development

4.3

Work-Life balance

3.8

Salary & Benefits

4.3

Job Security

4.4

Company culture

3.4

Promotions/Appraisal

3.9

Work Satisfaction

Explore 630 Reviews and Ratings
Sr Engineer Ad Tech

Nagpur

3-5 Yrs

Not Disclosed

Director Data Sciences

Bangalore / Bengaluru

12-15 Yrs

Not Disclosed

Sr Data Scientist

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
267 salaries
unlock blur

₹15.6 L/yr - ₹45.2 L/yr

Senior Software Engineer
161 salaries
unlock blur

₹13.2 L/yr - ₹46 L/yr

Software Engineer
148 salaries
unlock blur

₹6.5 L/yr - ₹24.4 L/yr

Lead Engineer
131 salaries
unlock blur

₹25 L/yr - ₹74 L/yr

Lead Specialist
116 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Target with

Walmart

3.9
Compare

Amazon

4.1
Compare

Flipkart

4.0
Compare

Reliance Retail

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview