Open In App

TurboHire Technologies Interview Experience for Software Developer Internship (Off-Campus)

Last Updated : 03 Dec, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Recently I interviewed at Turbohire Technologies Pvt. Ltd for 6 months internship for a software developer role. I applied to Turbohire through Linkedin and was fortunate enough to have an interview with the team. The whole interview process was smooth and virtual due to covid-19, I appeared for the process from my home.

There were a total of 2 rounds, the first round was a Google meet Introduction and technical round and the second and last round was the HR round.

Introductory and Technical Round (Google Meet and Google Docs): This round was an introductory interview roundabout myself followed by a technical round where I was asked questions on data structures and algorithms and was asked to write the full code on live Google Docs. The questions were:

  1. K’th Largest element in BST: For this question asked I first gave the solution where threaded binary trees use the NULL pointers to store the successor and predecessor information which helps us to utilize the wasted memory by those NULL pointer and I used the Morris Traversal is that we can do Inorder traversal without using stack or recursion which saves us memory consumed by stack or recursion call stack with total time complexity of O(n) and O(1) space complexity and then wrote the full code and came up with an optimized solution. The complete solution is given here and the next question was
  2. Check for balanced parenthesis in a given string: This question was direct and I knew the solution for it using a stack we could check for the balanced string the complete solution is given here, so this question was skipped and the third question was
  3. To find out the majority element in the given array: For this question asked where at first I explained an approach which involved the use of hashmap in O(n) space and O(n) time complexity and then I was able to approach the optimised solution when asked for more optimization of the solution and then I explained the algorithm which is Moore’s Voting Algorithm where the algorithm uses only O(n) time complexity and O(1) space complexity and then wrote the full code and came up with an optimized solution. Then the second round was conducted. The complete solution is given here

HR Round (Telephonic via phone): This round was conducted to check for my availability for this internship and also this round was to know my interest to work with the company and the tech stacks I am comfortable with and also to know about my family background and interests.

Finally, I was selected for an internship opportunity with Turbohire.


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads