GeeksforGeeks Question · Aug 2021

Target Corporation Interview Experience

SWE Phone Screen Intern Easy

Question Details

I'm an EE student.Pre Placement Talk :There Will be a Pre Placement talk for about 50 min. They'll talk about what their company is about and work culture, CTC and benefit...

Full Details

I'm an EE student. Pre Placement Talk : There Will be a Pre Placement talk for about 50 min. They'll talk about what their company is about and work culture, CTC and benefits, etc If you are serious about the company you should pay attention to talk and try to note some points so that you can ask them in the interview. Screening Test : The test is Conducted on AMCAT. There are three sections and a total of 90 min. First Section is Aptitude. They'll give some paragraphs, you need to analyze them and mark the options that make more sense from the paragraph. Second Section is Coding based: They'll give some code snippets or some pseudo-code and ask to guess the output or spot the error or ask about the time complexity of the code. These 2 sections are easy and pretty straightforward. The third section is the actual Coding round: There are 2 questions of 60 min time limit. This is the section that decides whether you'll be shortlisted or not. Each person will get 2 different questions. Mine were, Q1. In a city, there are few houses. Each House has a number along with the distance from the starting point of the city. we need to find the maximum place in-between two houses so that we can build the biggest house in the city. Inputs: the first line of the input contains N where N is the number of houses next N lines contain 2 integers house number and house distance respectively.

Output: print the numbers of the houses in ascending order where we can build the biggest house. if there are 2 such places, print the one closest to city reference point (i.e. 0)

Example :

input : 5 3 7 1 9 2 0 5 15 4 30 output : 4 5 Explanation: 4 and 5 are the houses with maximum place between them. Q2. Given a square matrix with entries just 0's and 1's,

Output -1 If there are two 1's that are right next to each other or on top of each other but not diagonal and output 1 otherwise. Inputs: first-line contains N, where N is the size of the matrix followed by N x N elements Output: see the question.

Example :

input : 2 0 1 1 1 3 0 0 0 0 1 0 1 0 1 output : -1 1 Explanation: In the first case matrix looks like this [0 1] 2,1 and 2,2 are side by side so the output is -1 [1 1] in the second case [0 0 0], No one is side by side or on top of each other. [0 1 0] [1 0 1]

Round 2 Technical Interview There is a Technical Interview online where 2 people take your interview for about 50 min. They'll ask about -> Projects in Your CV and explanation of how you did it. -> Details about your intern and about your role in the internship. they might go into the technicalities of the intern or project, so, better be prepared. -> Technical Questions mainly on DMBS, SQL queries, knowledge in Data Structures is always advantageous, sorting algorithms, linear and binary searches, and of course Time Complexity they ask you to write pseudocode and explain the logic with outputs in each iteration. they ask you time complexity every time and ask you to improve it Some of the coding questions that I was asked are, find a number in an array that might be sorted or unsorted, explain linear and binary search with this example 2nd minimum in an unsorted array given a number K find the two numbers that add up to K in a given sorted array write and SQL query to get the second highest salary from a table of employees Unfortunately out of 8 people, I didn't make it to the HR interview, 4 people made it to HR, and 3 got selected. Thanks for reading.

Free preview — 6 questions shown. Unlock all Target Corporation questions →

About This Question

This is a reported interview question from a target corporation interview for a swe role (intern level) during the phone screen round reported in 2021.

It covers the following topics: Binary Search, Sql, Sorting, Arrays, Matrix .

Difficulty rating: Easy

About Target Corporation Interview Reports

This question was reported by a candidate who interviewed at Target Corporation. LeakCode aggregates interview reports from 10+ sources, including 1Point3Acres, Glassdoor, LeetCode Discuss, Blind, Reddit, Indeed, and Nowcoder. Each report is translated where necessary, deduplicated against existing entries, and tagged by company, role, round type, and reporting date.

Use this question as one calibration data point, not a memorization target. Companies typically rotate their question pools every 2-4 months; the exact wording of a 2024 question may differ from what you encounter today. The underlying pattern, difficulty level, and follow-up depth at Target Corporation are the higher-signal extractions to take from this report.

For broader preparation context, the Target Corporation interview process typically includes a recruiter screen, one or two technical phone screens, and a 4-5 round on-site loop covering coding, system design (at L4+ levels), and behavioral. Reports tagged on LeakCode show the round-by-round distribution and typical difficulty calibration. To browse questions filtered by round type and seniority, use the company hub linked above.

How To Practice This Type of Question

Solve similar problems on LeetCode under timed conditions (25-35 minutes per medium difficulty). The goal is pattern recognition: recognize the underlying technique (sliding window, two-pointer, BFS, memoized recursion, etc.) within 60-90 seconds of reading. Strong candidates verbalize their hypothesis out loud before coding, then iterate based on feedback. Weak candidates dive into implementation immediately, lose time on the wrong approach, and run out of time for follow-ups.

Companies update their question pools every 2-4 months. The exact wording of any given question may have been retired by the time you interview. Focus your prep on the pattern, not the specific problem. The patterns that appear in Target Corporation reports consistently are the ones worth investing in; one-off niche problems are not.

During Your Target Corporation Round

Apply the standard interview round template: clarify requirements (2-3 minutes), state your approach out loud and confirm direction with the interviewer (3-5 minutes), code with narration (15-25 minutes), test with concrete examples including edge cases (5 minutes), discuss optimization or trade-offs if time permits (5 minutes). This template is universally accepted across FAANG and adjacent companies; deviating from it produces weaker interviewer feedback signal.

The single most predictive failure mode in Target Corporation reports tagged "no hire": not asking clarifying questions. Interviewers are explicitly trained to weight this. Strong candidates ask 3-5 clarifying questions even on problems that look obvious; weak candidates dive into code immediately. The clarifying-question check is often the first signal recorded in the interviewer's written notes.