Tip 1: Consistently practice DSA.
Tip 2: Thorough understanding of your current project.
Tip 3: Going through past interview experiences of Tekion.
Tip 1: Prefer to keep the content short and crisp.
Tip 2: Mainly focus on explaining your contribution to the project in terms of quantitative data, if possible.
First round was a short online assessment test. I appeared in Online assessment around 10PM. They had their own platform for OA. There were MCQs on OOPS and basic programming. And some polyfill questions on JavaScript topics like debounce, promise all, reduce function.
Second round had coding and system design questions.



1. You can assume that all the meetings will happen on the same day.
2. Also, as soon as a meeting gets over if some other meeting is scheduled to start at that moment, they can then be allocated that room.
Try to solve the problem in linear time complexity.
Consider there are three meetings scheduled with timings:
1pm - 4pm
3pm - 5pm
4pm - 6pm
At the start of time, meeting 1 will be allotted room 1, which will be occupied till 4 pm hence for meeting 2 we’ll have to provide another room. At 4 pm, meeting 3 can be organized in room 1 because by that time, meeting 1 would have ended. Hence we’ll require two rooms for holding all three meetings.
I was asked to code a simple form in JS having 2 input fields and render the input text after clicking submit button. (Learn)
It is a basic question, but you need to have a hands-on writing vanilla JS without IDE suggestions.
What is Accessibility standardisation? Why do we need it? Share any real-life scenarios you have seen.
Security, Accessibility Optimisation are repeatedly asked questions in high level system design interviews.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?