Upload Button Icon Add office photos

Filter interviews by

Tower Research Capital LLC Interview Questions, Process, and Tips for Experienced

Updated 5 Mar 2025

Top Tower Research Capital LLC Interview Questions and Answers for Experienced

  • Q1. Print Nodes at Distance K from a Given Node Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the spec ...read more
    asked in Software Developer interview
  • Q2. Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings ...read more
    asked in Software Engineer interview
  • Q3. 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
    asked in SDE-2 interview
View all 7 questions

Tower Research Capital LLC Interview Experiences for Experienced

Popular Designations

4 interviews found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

C++ test related to trading

Round 2 - Technical 

(1 Question)

  • Q1. OS and CPU internals

Interview Preparation Tips

Interview preparation tips for other job seekers - Do understand computer architecture thoroughly.

Core Engineering Interview Questions asked at other Companies

Q1. Why Diesel Engines have higher compression ratio than SI engines
View answer (1)

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I appeared for an interview 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?
  • Ans. 

    Output the person with the maximum earnings from each department

    • Join the employee and department tables on department ID

    • Group by department ID and find the max earnings for each department

    • Join the result with the employee table to get the person with max earnings

  • Answered by AI
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. 

    Find the minimum cost to reduce an array to one element by merging adjacent elements.

    • Iterate through the array and merge adjacent elements with the smallest sum each time.

    • Keep track of the total cost as you merge elements.

    • Repeat the merging process until only one element remains in the array.

  • Answered by AI
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

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 operation multiple times. In one operation, you can merge any two adjacent ele... read more
View answer (1)

SDE-2 Interview Questions asked at other Companies

Q1. Maximum Frequency Number Problem Statement Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array. If multiple elements have the same maximum fre... read more
View answer (6)

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was the qualification round which comprised of several MCQs and 3 coding questions.
It was held on Hackerearth from 3:00 PM to 4:00 PM.
Use of any other IDE was prohibited.

  • Q1. Given a problem statement and a piece of code, how would you find and correct the bug in the code?
  • Ans. 

    To find and correct a bug in code, analyze problem statement, review code, use debugging tools, and test different scenarios.

    • Understand the problem statement and expected output.

    • Review the code for syntax errors, logical errors, and potential bugs.

    • Use debugging tools like breakpoints, print statements, and IDE debuggers.

    • Test the code with different inputs to identify the bug.

    • Make necessary corrections based on the iden...

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    Given a binary tree, a target node, and an integer K, find all nodes at distance K from the target node.

    • Traverse the binary tree to find the target node.

    • Use BFS to traverse the tree from the target node to nodes at distance K.

    • Keep track of the distance while traversing the tree.

    • Return the values of nodes at distance K in any order.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM

  • Q1. 

    Subarray Challenge: Largest Equal 0s and 1s

    Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.

    Input:

    Input beg...

  • Ans. 

    Find the length of the largest subarray with equal number of 0s and 1s in a given array.

    • Iterate through the array and maintain a count of 0s and 1s encountered so far.

    • Store the count difference in a hashmap with the index as the key.

    • If the same count difference is encountered again, the subarray between the two indices has equal 0s and 1s.

    • Return the length of the longest subarray found.

  • Answered by AI
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.

Interview Preparation Tips

Eligibility criteriaNeeded Work Experience in a leading Tech CompanyTower Research Capital interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures - Sets, HashMap, Priority Queue, SQL, OOPS, Operating System, AlgorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.

Application resume tips for other job seekers

Tip 1 : Mention the projects you worked on in your past work experience and how it helped your company.
Tip 2 : Keep your resume up to date in accordance with the role you are applying for
Tip 3 : Don't put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Tower Research Capital LLC Software Developer Interview Questions and Answers

Q1. Print Nodes at Distance K from a Given Node Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of these nodes. The distance between two ... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

Top Tower Research Capital LLC Software Engineer Interview Questions and Answers

Q1. Best Time to Buy and Sell Stock Problem Statement Given an array prices representing the prices of a stock where each element indicates the price at a given minute, determine the maximum profit you can achieve by buying and selling the stoc... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Tower Research Capital LLC interview questions for popular designations

 Software Developer

 (4)

 SDE-2

 (2)

 Core Engineering

 (2)

 Software Engineer

 (2)

 Strategist

 (2)

 Senior Software Engineer

 (1)

 Senior Information Technology Engineer

 (1)

Jobs at Tower Research Capital LLC

View all

Interview questions from similar companies

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Round duration - 90 Minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Validate Binary Search Tree Problem Statement

    Your task is to determine if a given binary tree with 'N' nodes is a valid Binary Search Tree (BST). A BST is defined by the following properties:

    • The lef...
  • Ans. 

    Validate if a given binary tree is a valid Binary Search Tree (BST) based on its properties.

    • Check if the left subtree of a node has only nodes with data less than the node's data.

    • Verify if the right subtree of a node has only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Implement a validation function for a BST.

    • Output 'true' if the binary tree is

  • Answered by AI
Round 3 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria8 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structure , Oops , Dynamic Programming, Memory Management, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Pratice regularly atleast 5 problem . Make it habit .Try to cover Leetcode medium questions as many as possible 
Tip 2 : Be through with your projects . At some point interviewer will ask you some project related questions 
Tip 3 : Be strong in your CS fundamentals.

Application resume tips for other job seekers

Tip 1 : Do not put irrelevant information such as DOB
Tip 2 : Put only those skill which you can defend in cross questioning

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. About projects in resume
  • Q2. Resume related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and be confident speak properly in the interview
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Tell me about a time where you resolve a conflict

Round 3 - Coding Test 

Reverse a string, identify anagram

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and be confident in yourself
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

70 minutes test, and 4 questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural Queston
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of garbage collectors
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 87 minutes
Round difficulty - Medium

Timing : It was conducted in evening at 3 PM
The pacreception environment was very user friendly .
The platform was audio and video proctored.

  • Q1. 

    Binary to Decimal Conversion

    Convert a given binary number, represented as a string 'S' of size 'N', into its decimal equivalent integer and output it.

    Input:

    The first line contains an integer 'T', den...
  • Ans. 

    Convert a binary string to its decimal equivalent integer.

    • Iterate through the binary string from right to left, multiplying each digit by 2 raised to the power of its position.

    • Add the results of the multiplication to get the decimal equivalent.

    • Ensure the binary string consists only of '0' and '1' characters.

    • Handle multiple test cases by repeating the conversion process for each case.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 80 minutes
Round difficulty - Medium

So This was a very interactive round . There were two interviewers , one male and one female . The male interviewer was quite experienced where as female interviewer was relatively new . The Interview started by a small introduction followed by some OOPS related questions where I was tested on how i perceive the concept of OOPS in real life . Then this conversation was followed by some core concepts of JAVA like abstract classes and interfaces . Then I was asked about my projects that i mentioned in my resume , then after some healthy discussion on those projects , the interviewer started to question about DBMS , I was asked some basic queries followed by some advanced queries and then followed by a discussion on SQL vs NoSQL . Then Interviewers asked me about my tech stack and the source of my technical knowledge. Then at last I was asked that why Blackrock and this concluded my Interview.

  • Q1. 

    Ninja And The Triangle Problem Statement

    Ninja is provided with 'N' stars and the task is to construct a triangle such that the 'i'th level of the triangle uses 'i' number of stars. The goal is to make th...

  • Ans. 

    Given 'N' stars, construct a triangle with maximum height using 'i' stars in 'i'th level.

    • Calculate the maximum height of the triangle using the formula: height = floor((-1 + sqrt(1 + 8 * N)) / 2)

    • Iterate through each test case and calculate the maximum height for each 'N'.

    • Output the maximum height for each test case.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in MumbaiEligibility criteriaAbove 7 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structures , Algorithms , Operation Systems , OOPS , DBMS , Web DevelopmentTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be precise about what to do and what not to do.
Tip 2 : Always Revise the concepts you have done in past , use prime day revision theory.
Tip 3 : Do as many projects as you can but always mention those projects in which you are very well versed.
Tip 4 : Keep on reading random news related to your favourite tech and always have an in depth knowledge of what tech you currently use.

Application resume tips for other job seekers

Tip 1 : Keep it short , precise and effective .
Tip 2 : Mention even small things that you did had an impact on other people.

Final outcome of the interviewRejected

Skills evaluated in this interview

Tower Research Capital LLC Interview FAQs

How many rounds are there in Tower Research Capital LLC interview for experienced candidates?
Tower Research Capital LLC interview process for experienced candidates usually has 2 rounds. The most common rounds in the Tower Research Capital LLC interview process for experienced candidates are Coding Test and Technical.
How to prepare for Tower Research Capital LLC interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Tower Research Capital LLC. The most common topics and skills that interviewers at Tower Research Capital LLC expect are Python, Linux, Computer science, Automation and Monitoring.
What are the top questions asked in Tower Research Capital LLC interview for experienced candidates?

Some of the top questions asked at the Tower Research Capital LLC interview for experienced candidates -

  1. Given k and DFS traversal string for a k-ary tree, construct the tree. The Str...read more
  2. "How would you tell whether a graph has a node with n degree...read more
  3. There were 7 guests at a party + a host. 1st guest shook hands with 1 guy, 2nd ...read more

Tell us how to improve this page.

Tower Research Capital LLC Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

MNC Group Interview Questions
4.3
 • 104 Interviews
Blackrock Interview Questions
3.8
 • 99 Interviews
Nomura Holdings Interview Questions
3.8
 • 69 Interviews
View all

Tower Research Capital LLC Reviews and Ratings

based on 17 reviews

3.7/5

Rating in categories

3.4

Skill development

3.2

Work-life balance

4.1

Salary

2.8

Job security

3.5

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 17 Reviews and Ratings
Systems Engineer

Gurgaon / Gurugram

3-6 Yrs

Not Disclosed

Technical Project Manager

Gurgaon / Gurugram

13-18 Yrs

Not Disclosed

Trade Support Associate

Gurgaon / Gurugram

5-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
42 salaries
unlock blur

₹24.7 L/yr - ₹66.5 L/yr

Software Developer
32 salaries
unlock blur

₹24 L/yr - ₹53.9 L/yr

Sde1
25 salaries
unlock blur

₹30 L/yr - ₹60 L/yr

Senior Software Engineer
20 salaries
unlock blur

₹30 L/yr - ₹50 L/yr

SDE (Software Development Engineer)
17 salaries
unlock blur

₹35 L/yr - ₹50 L/yr

Explore more salaries
Compare Tower Research Capital LLC with

Nomura Holdings

3.8
Compare

Blackrock

3.8
Compare

Muthoot Homefin India

3.9
Compare

Adarsh Credit Co-Operative Society

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