Tekion Corp interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Tekion Corp
upvote
share-icon
4 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Application story
I saw a LinkedIn post from one of their recruiters with a Google form link to apply for various positions. My years of work experience and tech stack aligned with the SDE 1 Backend Developer role, so I applied for it. There were a total of four rounds (all virtual) in the process, followed by an HR discussion. The entire process was completed in about two weeks.
Why selected/rejected for the role?
I was selected for this role because I was able to clear all the rounds and provide satisfactory responses to my interviewers.
Preparation
Duration: 4 months
Topics: DSA, Puzzle Solving, Java, Spring Boot, LLD, Behavioral questions, Design patterns
Tip
Tip

Tip 1: Have a strong understanding of DSA concepts, as they will almost always be part of at least two rounds.

Tip 2: Have a good grasp and experience with one tech stack, with deep knowledge of its concepts and nuances.

Tip 3: Complete at least two projects.

Application process
Where: Referral
Eligibility: Atleast two years of work experience
Resume Tip
Resume tip

Tip 1: Resume formatting is very important for a good ATS score.

Tip 2: Include crisp and precise points in your resume.

Interview rounds

01
Round
Medium
Online Coding Test
Duration90 minutes
Interview date10 May 2024
Coding problem3

1. Algorithmic and basic math

It was a basic algorithm and math question.

2. Minimum Window Substring

Hard
15m average time
85% success
0/120
Asked in companies
PayPalBarclaysUber

You are given two strings ‘A’ and ‘B’. Your task is to return a substring ‘S’ of ‘A’ such that the following conditions hold true :


• You can make ‘B’ from ‘S’ by removing some characters and rearranging some characters zero or more times.

• Length of ‘S’ must be as minimum as possible.


Note :

Testcases are generated such that a substring always exists and is unique.

Example :

A = ninjas, B = sin

All possible substrings with which 'B' can be created are
"ninjas", "injas".

Hence the substring with minimum length is "injas".
Try solving now

3. Shortest Path in a Binary Matrix

Moderate
37m average time
65% success
0/80
Asked in companies
SamsungOracleAmazon

You have been given a binary matrix of size 'N' * 'M' where each element is either 0 or 1. You are also given a source and a destination cell, both of them lie within the matrix.

Your task is to find the length of the shortest path from the source cell to the destination cell only consisting of 1s. If there is no path from source to destination cell, return -1.

Note:
1. Coordinates of the cells are given in 0-based indexing.
2. You can move in 4 directions (Up, Down, Left, Right) from a cell.
3. The length of the path is the number of 1s lying in the path.
4. The source cell is always filled with 1.
For example -
1 0 1
1 1 1
1 1 1
For the given binary matrix and source cell(0,0) and destination cell(0,2). Few valid paths consisting of only 1s are

X 0 X     X 0 X 
X X X     X 1 X 
1 1 1     X X X 
The length of the shortest path is 5.
Try solving now
02
Round
Medium
Video Call
Duration60 minutes
Interview date17 May 2024
Coding problem2

1. Puzzle

It was the 25 horses and race in batches of 5 puzzle problems. I was asked to write a detailed and self-explanatory document for my answer and was not allowed to explain anything verbally. It was to check my understanding and explanation skills.

2. Matching Prefix

Moderate
0/80
Asked in companies
UberInfo Edge India (Naukri.com)Amazon

You are given an integer ’N’ denoting the length of the array ‘Arr’ of strings made up of lower case English alphabets. The cost of this array is equal to the sum of length of each string in the array.

You can select a new string ‘S’ of length ‘N’, you are now allowed to delete the prefix from the strings in the array (This leads to lowering the cost of the array), the deleted prefix should be exactly the same as the selected string ‘S.

Find the string ‘S’ such that the cost of the array ‘Arr’ is minimized. If multiple strings exist, then find the lexicographically smallest string amongst them.

For Example :
If the array of strings is: {co, code, studio, codingninjas, coding, debug, coder, cipher} 
Then the original cost of the array is 2 + 4 + 6 + 12 + 6 + 5 + 5 + 6 = 46.

If we select the new string as “cod” and delete the matching prefixes if exists then the array becomes: {co, e, studio, ingninjas, ing, debug, er, cipher}, and the cost now becomes: 2 + 1 + 6 + 9 + 3 + 5 + 2 + 6 = 34.

You can check for any other possible string, the cost will not become less than 34, hence the optimal answer for this case is “cod”.
Try solving now
03
Round
Hard
Video Call
Duration80 minutes
Interview date18 May 2024
Coding problem1

1. System Design

I was given the requirements to give a low-level design for a parking lot system. And then later I was also asked how would I handle the concurrency in the system. I was not asked to write the entire code but to explain the classes and their relationships, explain components and other details

04
Round
Medium
Video Call
Duration30 minutes
Interview date19 May 2024
Coding problem0

It was a Hiring Manager round where the hiring manager discussed my technical skills. He asked me questions based on my projects and previous company experiences.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
2 rounds | 3 problems
Interviewed by Tekion Corp
1883 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 6 problems
Interviewed by Tekion Corp
897 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Tekion Corp
1112 views
0 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Tekion Corp
847 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57825 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes