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

Software Engineer

Tekion Corp
upvote
share-icon
3 rounds | 8 Coding problems

Interview preparation journey

expand-icon
Journey
I realized from my previous failures that JavaScript is key to cracking front-end interviews. Therefore, I rigorously practised challenging JavaScript questions and better prepared myself before the interview at Tekion.
Application story
The interview process generally spans over a week or two, depending on the circumstances. A referral can improve your chances of landing a job at product-based companies, as opposed to applying directly through the portal.
Preparation
Duration: 2 Months
Topics: JavaScript, React, React Hooks, HTML, CSS, REST APIs
Tip
Tip

Tip 1: Be thorough with the fundamentals of JavaScript and React.

Tip 2: Read articles related to web development.

Tip 3: Reviewing previous interview experiences can be very helpful.

Application process
Where: Referral
Eligibility: No criteria
Resume Tip
Resume tip

Tip 1: Keep it concise and to the point.

Tip 2: Be honest! Bluffing can sometimes lead to rejection.

Interview rounds

01
Round
Hard
Face to Face
Duration60 minutes
Interview date15 Feb 2024
Coding problem4

1. Search In Rotated Sorted Array

Moderate
30m average time
65% success
0/80
Asked in companies
FreshworksExpedia GroupPayPal

Aahad and Harshit always have fun by solving problems. Harshit took a sorted array consisting of distinct integers and rotated it clockwise by an unknown amount. For example, he took a sorted array = [1, 2, 3, 4, 5] and if he rotates it by 2, then the array becomes: [4, 5, 1, 2, 3].

After rotating a sorted array, Aahad needs to answer Q queries asked by Harshit, each of them is described by one integer Q[i]. which Harshit wanted him to search in the array. For each query, if he found it, he had to shout the index of the number, otherwise, he had to shout -1.

For each query, you have to complete the given method where 'key' denotes Q[i]. If the key exists in the array, return the index of the 'key', otherwise, return -1.

Note:

Can you solve each query in O(logN) ?
Try solving now

2. pipe() and compose()

Implement polyfill of compose (Learn)

3. Implement currying

Implement currying for a given function that takes a random number of arguments.
```
// Problem statement
const multiply=(x,y,z) => x*y*z;

const res0 = curried(1)(2)(3); // should print 6
const res1 = curried(1, 2)(3); // should print 6
const res2 = curried(1, 2, 3); // should print 6
const res3 = curried(1)(2, 3); // should print 6

// Solution 
const curry = fn =>{
   return curried = (...args) => {
       if (fn.length !== args.length){
           return curried.bind(null, ...args)
       }
   return fn(...args);
   };
}
const curried = curry(totalNum);
```
 

4. useMemo hook

Implement useMemo hook polyfill (Learn)

02
Round
Medium
Face to Face
Duration60 minutes
Interview date20 Feb 2024
Coding problem3

1. React.js Question

Data Fetching in React. (Learn)

2. React.js Question

This was a follow-up to the previous question where you are supposed to keep on fetching until it returns a successful response.

3. React.js Question

Followup 2: Stop trying after a certain count (provided to you e.g. 5 attempts). You can think of it as a restricted polling type of thing.

 

03
Round
Easy
HR Round
Duration30 minutes
Interview date27 Feb 2024
Coding problem1

1. HR question

Salary Negotiation.

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
Software Engineer
2 rounds | 2 problems
Interviewed by Tekion Corp
1954 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Tekion Corp
1309 views
0 comments
0 upvotes
company logo
Frontend developer II
3 rounds | 6 problems
Interviewed by Tekion Corp
366 views
0 comments
0 upvotes
company logo
SDE - 1
4 rounds | 6 problems
Interviewed by Tekion Corp
1773 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7874 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
9973 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4310 views
1 comments
0 upvotes