Upload Button Icon Add office photos

Filter interviews by

Tower Research Capital LLC SDE-2 Interview Questions, Process, and Tips

Updated 20 May 2022

Top Tower Research Capital LLC SDE-2 Interview Questions and Answers

  • Q1. Minimum Cost to Reduce Array Given an array ARR of size N containing positive integers, the task is to reduce the size of the array to 1 by performing a specific operati ...read more
  • Q2. Word Ladder Problem Statement Given two strings, BEGIN and END , along with an array of strings DICT , determine the length of the shortest transformation sequence from ...read more
  • Q3. Number of Islands Problem Statement You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to d ...read more
View all 6 questions

Tower Research Capital LLC SDE-2 Interview Experiences

2 interviews found

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 20 May 2022

I was interviewed in Dec 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Word Ladder Problem Statement

    Given two strings, BEGIN and END, along with an array of strings DICT, determine the length of the shortest transformation sequence from BEGIN to END. Each transformation inv...

  • Ans. 

    Start from the given start word.
    Push the word in the queue
    Run a loop until the queue is empty
    Traverse all words that adjacent (differ by one character) to it and push the word in a queue (for BFS)
    Keep doing so until we find the target word or we have traversed all words.

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. 

    A graph where all vertices are connected with each other has exactly one connected component, consisting of the whole graph. Such a graph with only one connected component is called a Strongly Connected Graph.
    The problem can be easily solved by applying DFS() on each component. In each DFS() call, a component or a sub-graph is visited. We will call DFS on the next un-visited component. The number of calls to DFS() give...

  • Answered Anonymously
Round 3 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Create a variable no = 2 and changed = false
    Run a loop until there is no cell of the matrix which is changed in an iteration.
    Run a nested loop and traverse the matrix. If the element of the matrix is equal to no then assign the adjacent elements to no + 1 if the adjacent element’s value is equal to 1, i.e. not rotten, and update changed to true.
    Traverse the matrix and check if there is any cell which is 1. If 1 is pres

  • Answered Anonymously
Round 4 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. How would you design a system like Splitwise?
  • Ans. 

    Tip 1 : Make sure you ask relevant questions
    Tip 2 : Focus on design principles

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 2 in GurgaonEligibility criteriaNoTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures, System Design, C++ and JAVA fundamentals, Operating Systems, DBMSTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Leetcode medium questions(top ones from all the popular topics)
Tip 2 : Have good hold of System design questions and practice all the commonly asked ones.

Application resume tips for other job seekers

Tip 1 : Keep it concise
Tip 2 : Make sure to include the keywords/tech stack that the particular opening is looking out for

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

There were
1. 25 C++/Java/Shell based MCQs
2. 2 SQL based questions - you are expected to write sql query based on the problem statement
3. Create React App - Todo App

Deadline was 7 days

  • Q1. Given an employee table and a department table, how would you output the person with the maximum earnings from each department?
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

It was in afternoon 2PM. Interviewer was polite and helpful. He was trying me to push me more. At the end of the interview, he even gave me the good feedback

  • Q1. 

    Minimum Cost to Reduce Array

    Given an array ARR of size N containing positive integers, the task is to reduce the size of the array to 1 by performing a specific operation multiple times. In one operation...

  • Ans. Recursion with memoisation.
    • It can be proved that the greedy solution will not be optimum, so we need to solve this by dp or recursion. E.g., if ‘ARR’ = {6,4,4,6} and we try to merge the elements with minimum sum first, i.e. merge 4 and 4 first and so on, we will get the answer as 42, but the optimal merging gives 40.
    • The main idea is to merge two consecutive numbers at every possible index ‘i’ and then recursively call ...
  • Answered Anonymously
Round 3 - Telephonic Call 

Round duration - 60 Minutes
Round difficulty - Medium

It was in the noon 2.30PM. Interviewer was the team lead. Interviewer was polite and helpful

Round 4 - Telephonic Call 

Round duration - 30 Minutes
Round difficulty - Medium

Interviewer was the Division Manager. Was just scratching the surface in all domain like behavioural, tech questions, situational questions

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from A. C. Patil College of Engineering. I applied for the job as SDE - 2 in GurgaonEligibility criteria2 year experience and experience working on ReactJS & any OOPS languageTower Research Capital interview preparation:Topics to prepare for the interview - Recursion, Array, Dynamic Programming, Data Structures, HashmapTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Understand in and out of recursion
Tip 2 : Be consistent - solve 2-3 problems a day, start from easy level
 

Application resume tips for other job seekers

Tip 1 : Make sure your resume reflect what you have acheived on your work front
Tip 2 : Your work experience should be on top and should be detailed along with figures( like improved page load speed by 2.5x, etc)

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency Number Problem Statement Given an array of inte ... read more
asked in Atlassian
Q2. K Most Frequent Words Problem Statement Given an array of N non-e ... read more
Q3. Reverse String Operations Problem Statement You are provided with ... read more
asked in KhataBook
Q4. Alien Dictionary Problem Statement Ninja is mastering an unusual ... read more
asked in Zoho
Q5. Make Palindrome Problem Statement You are provided with a string ... read more

Tell us how to improve this page.

Interview Questions from Similar Companies

MNC Group Interview Questions
4.2
 • 101 Interviews
Nomura Holdings Interview Questions
3.9
 • 68 Interviews
Link Intime Interview Questions
3.4
 • 8 Interviews
View all
Software Engineer
35 salaries
unlock blur

₹14 L/yr - ₹50 L/yr

Software Developer
28 salaries
unlock blur

₹24 L/yr - ₹70 L/yr

Sde1
25 salaries
unlock blur

₹30 L/yr - ₹60 L/yr

SDE (Software Development Engineer)
17 salaries
unlock blur

₹35 L/yr - ₹50 L/yr

Senior Software Engineer
16 salaries
unlock blur

₹35 L/yr - ₹72 L/yr

Explore more salaries
Compare Tower Research Capital LLC with

Jane Street

5.0
Compare

Optiver

4.6
Compare

Indian Molasses Company

3.8
Compare

SIG Plc

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview