Open In App

Turvo Interview Experience for Associate Software Engineer(2 yrs exp)

Last Updated : 28 Apr, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

Before the interviews, I appeared for an online Assessment on Hacker-rank which consisted of two questions:

  •  Given a number of people ‘n’ and a number of groups ‘k’, find the distinct options to form ‘k’ contiguous groups out of the ‘n’ people while respecting the following conditions:
    1. In each option, the total of group sizes is equal to the number of people.
    2. In each option, each group’s size should be greater than or equal to the group to its left.
    3. The groups formed in each option are distinct, meaning that they differ in at least one group. For example, [1, 1, 1, 3] is distinct from [1, 1, 1, 2] but not from [1, 3, 1, 1].
      • Example: people=8, groups=4
      • Ans:5      ([1, 1, 1, 5], [1, 1, 2, 4], [1, 1, 3, 3], [1, 2, 2, 3], [2, 2, 2, 2])
  • Consider a section of road with positions indexed like a number line. There are a number of vehicles on the road placed facing right along the line with the positions of the rear and front of each car known. There are multiple lanes, so some cars may share some of the same locations without running into one another. Determine the largest gap in positions of all cars, with regard to lanes.
    • Example: n=10 (total length of road), start=[1, 2, 5, 8], finish=[2, 2, 6, 10]
    • Ans: 2 .

Round 1:

It was supposed to be on-site but all my rounds happened on Zoom video call, due to COVID-19 lockdown.

  • Given an integer, reverse it, without converting it into a string.
  • Given an array which is sorted and then rotated, find the k’th smallest number. For both of these questions, I was asked to write the pseudo code on notepad while on screen share. And to explain the time complexity, and dry run some example test cases given by the interviewer.

Round 2:

It was also over Zoom video call.

  • Basic Introduction. What are you working on? I mentioned micro-services, so he asked about the advantages and disadvantages of micro-services.
  • Given a binary tree, find a root-to-leaf path with a given sum. Follow-up question: Print the root-to-leaf path also.
  • Given an un-directed graph, fine the number of connected components. For the above question and this, I was asked to write the pseudo code on notepad while on screen share, to explain the time complexity, the data structures used and why I was using them.
  • Builder Design Pattern. I didn’t know about it. So, we didn’t waste time on it.
  • How would you design an LRU cache. What data structures you would use. The interview went on for a long time, hence we discussed it verbally.

Round 3:

It was with the VP(Engineering) of Turvo India, also over a Zoom call.

  • He introduced himself and asked about myself.
  • I was asked to explain about the best project, over which i worked in my current company.
  • Given an airport with multiple runways, design the classes and methods to demonstrate how would you schedule arrivals and departures smoothly. Also, explain how will you handle emergency landings; how would you keep the data in sync, in real time.
    • This round didn’t go well for me. And I was not allowed to go to the last round. Hope this article helps some of you bag an offer.

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

Similar Reads