Upload Button Icon Add office photos

Tower Research Capital LLC

Compare button icon Compare button icon Compare

Filter interviews by

Tower Research Capital LLC Software Developer Interview Questions and Answers

Updated 16 Sep 2024

12 Interview questions

A Software Developer was asked 10mo ago
Q. Design an application similar to MakeMyTrip.
Ans. 

MakeMyTrip is a travel booking application that allows users to book flights, hotels, and holiday packages.

  • Include features like flight/hotel search, booking, payment gateway integration, and user profiles.

  • Implement filters for search results, reviews/ratings for hotels, and notifications for booking updates.

  • Integrate maps for location tracking, weather forecasts, and customer support chatbot.

  • Offer discounts, loya...

A Software Developer was asked
Q. 

Check If Two Nodes Are Cousins

You are given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, and two node values, a and b. Your task is to determine if t...

Ans. 

Check if two nodes in a binary tree are cousins by comparing their levels and parents.

  • Traverse the tree to find the levels and parents of the given nodes.

  • Compare the levels and parents of the two nodes to determine if they are cousins.

  • If the levels are the same and the parents are different, the nodes are cousins.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 

Counting Nodes in a Complete Binary Tree - Problem Statement

Given the root of a complete binary tree, calculate the total number of nodes in this tree.

A complete binary tree is defined as a binary tree ...

Ans. 

Count the total number of nodes in a complete binary tree given its root.

  • Traverse the tree in level order and count the nodes

  • Use a queue to keep track of nodes at each level

  • Check for null nodes represented by -1 in the input

  • The total number of nodes in the example tree is 7

A Software Developer was asked
Q. 

Unweighted Graph Shortest Path Problem

You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 t...

Ans. 

Find the shortest path between two houses in a city represented as an unweighted graph.

  • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

  • Start BFS from the source house and keep track of the path taken to reach each house.

  • Once the destination house is reached, backtrack from destination to source to find the shortest path.

  • Consider using a queue data structure to implement BF...

A Software Developer was asked
Q. 

Rearrange Array Numbers for Largest Possible Number

Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible numerical value. You are not permitted to alte...

Ans. 

Rearrange array numbers to form the largest possible numerical value by combining digits of each number in the array.

  • Convert integers in the array to strings for easier manipulation.

  • Sort the array of strings in non-increasing order based on custom comparison function.

  • Join the sorted strings to form the largest possible number.

A Software Developer was asked
Q. Can you explain the ACID properties and the rollback mechanism in DBMS?
Ans. 

ACID properties ensure database transactions are processed reliably. Rollback mechanism undoes changes if transaction fails.

  • ACID properties: Atomicity, Consistency, Isolation, Durability

  • Atomicity ensures all operations in a transaction are completed successfully or none at all

  • Consistency ensures database remains in a valid state before and after transaction

  • Isolation ensures transactions are independent and do not ...

Be interview-ready. Browse the most asked HR questions.
illustration image
A Software Developer was asked
Q. 

Island Perimeter Calculation Problem

Given a binary grid representation of a map of an island, calculate the perimeter of the island. The grid uses '0' for water and '1' for land.

The grid has only one is...

Ans. 

Calculate the perimeter of an island represented by a binary grid.

  • Iterate through the grid and count the perimeter based on land cells and their adjacent cells.

  • Each land cell contributes 4 units to the perimeter, subtract 2 units for each adjacent land cell.

  • Handle edge cases where land cells are at the boundaries of the grid.

  • Return the total perimeter for each test case.

Are these interview questions helpful?
A Software Developer was asked
Q. 

Clearing the Forest Problem Statement

Ninja lives in a city called Byteland where a festive event is being organized. To make space for this event, Ninja is tasked with clearing a nearby forest. The forest...

Ans. 

Calculate the minimum number of steps Ninja needs to cut down all trees in a forest grid.

  • Iterate through the grid to find the shortest path to cut down all trees in order.

  • Use a priority queue to keep track of the shortest trees to cut next.

  • If it's impossible to cut all trees, return -1.

  • Consider all four cardinal directions for movement in the grid.

A Software Developer was asked
Q. 

Palindromic Substrings Problem Statement

Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

Explanation:

A string is considered a pali...

Ans. 

Return all distinct palindromic substrings of a given string in alphabetical order.

  • Iterate through all possible substrings of the given string.

  • Check if each substring is a palindrome by comparing it with its reverse.

  • Store all palindromic substrings in a set to ensure uniqueness.

  • Return the sorted list of palindromic substrings.

A Software Developer was asked
Q. 

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 the...

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.

Tower Research Capital LLC Software Developer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA medium level questions were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Design MakeMyTrip kind of application.
  • Ans. 

    MakeMyTrip is a travel booking application that allows users to book flights, hotels, and holiday packages.

    • Include features like flight/hotel search, booking, payment gateway integration, and user profiles.

    • Implement filters for search results, reviews/ratings for hotels, and notifications for booking updates.

    • Integrate maps for location tracking, weather forecasts, and customer support chatbot.

    • Offer discounts, loyalty p...

  • Answered by AI
  • Q2. Oops based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for LLD.

Skills evaluated in this interview

I appeared for an interview in Jun 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

The test link was active for a week, and you can give anytime you like. The IDE was very good and self explanatory. There were 2 coding questions and 15 aptitude questions.

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    Find the shortest path between two houses in a city represented as an unweighted graph.

    • Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.

    • Start BFS from the source house and keep track of the path taken to reach each house.

    • Once the destination house is reached, backtrack from destination to source to find the shortest path.

    • Consider using a queue data structure to implement BFS eff...

  • Answered by AI
  • Q2. 

    Check If Two Nodes Are Cousins

    You are given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, and two node values, a and b. Your task is to determine if ...

  • Ans. 

    Check if two nodes in a binary tree are cousins by comparing their levels and parents.

    • Traverse the tree to find the levels and parents of the given nodes.

    • Compare the levels and parents of the two nodes to determine if they are cousins.

    • If the levels are the same and the parents are different, the nodes are cousins.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It contained two programming questions.

  • Q1. 

    Counting Nodes in a Complete Binary Tree - Problem Statement

    Given the root of a complete binary tree, calculate the total number of nodes in this tree.

    A complete binary tree is defined as a binary tree...

  • Ans. 

    Count the total number of nodes in a complete binary tree given its root.

    • Traverse the tree in level order and count the nodes

    • Use a queue to keep track of nodes at each level

    • Check for null nodes represented by -1 in the input

    • The total number of nodes in the example tree is 7

  • Answered by AI
  • Q2. 

    Rearrange Array Numbers for Largest Possible Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible numerical value. You are not permitted to alt...

  • Ans. 

    Rearrange array numbers to form the largest possible numerical value by combining digits of each number in the array.

    • Convert integers in the array to strings for easier manipulation.

    • Sort the array of strings in non-increasing order based on custom comparison function.

    • Join the sorted strings to form the largest possible number.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This was more of a interaction round with some technical skills.

  • Q1. Can you explain the ACID properties and the rollback mechanism in DBMS?
  • Ans. 

    ACID properties ensure database transactions are processed reliably. Rollback mechanism undoes changes if transaction fails.

    • ACID properties: Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures all operations in a transaction are completed successfully or none at all

    • Consistency ensures database remains in a valid state before and after transaction

    • Isolation ensures transactions are independent and do not inter...

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8 CGPATower Research Capital interview preparation:Topics to prepare for the interview - DSA and Algorithms, OOPS, Database, OS, NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on different varieties of problems, quality of problems matter greater than the quantity.
Tip 2 : Focus on design thinking, that will help in rounds other than problem solving.

Application resume tips for other job seekers

Tip 1 : Focus on demonstrating your academic excellence and course projects
Tip 2 : Mention internship details with clarity

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Feb 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Consisted of 3 DSA questions and MCQ on python proficiency

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

  • Ans. 

    Return all distinct palindromic substrings of a given string in alphabetical order.

    • Iterate through all possible substrings of the given string.

    • Check if each substring is a palindrome by comparing it with its reverse.

    • Store all palindromic substrings in a set to ensure uniqueness.

    • Return the sorted list of palindromic substrings.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was a pure DSA round and interviewer was very helpful with providing significant hints to solve the given problems

  • Q1. 

    Island Perimeter Calculation Problem

    Given a binary grid representation of a map of an island, calculate the perimeter of the island. The grid uses '0' for water and '1' for land.

    The grid has only one i...

  • Ans. 

    Calculate the perimeter of an island represented by a binary grid.

    • Iterate through the grid and count the perimeter based on land cells and their adjacent cells.

    • Each land cell contributes 4 units to the perimeter, subtract 2 units for each adjacent land cell.

    • Handle edge cases where land cells are at the boundaries of the grid.

    • Return the total perimeter for each test case.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

DSA+OS

  • Q1. 

    Clearing the Forest Problem Statement

    Ninja lives in a city called Byteland where a festive event is being organized. To make space for this event, Ninja is tasked with clearing a nearby forest. The fores...

  • Ans. 

    Calculate the minimum number of steps Ninja needs to cut down all trees in a forest grid.

    • Iterate through the grid to find the shortest path to cut down all trees in order.

    • Use a priority queue to keep track of the shortest trees to cut next.

    • If it's impossible to cut all trees, return -1.

    • Consider all four cardinal directions for movement in the grid.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaPython ProficiencyTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures, Algorithms , OOPS , DBMS , OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250 questions
Tip 2 : Do at least two projects
 

Application resume tips for other job seekers

Tip 1 : Should be covered in One page
Tip 2 : Project description should be professional

Final outcome of the interviewSelected

Skills evaluated in this interview

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 trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Tower Research Capital LLC?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was angular and java

Round 2 - Technical 

(1 Question)

  • Q1. A question about dbms etc

I applied via LinkedIn and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - No I Am Sorry I Don't know for the advice in interview

I applied via Walk-in and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Electronic communication engineering

Interview Preparation Tips

Interview preparation tips for other job seekers - Written test
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Social media and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Must contain some questions which will be considered as a qualifier test for next round .it will have some passout marks to get into a next round .

Round 3 - Technical 

(1 Question)

  • Q1. About skills and communication skills
Round 4 - HR 

(1 Question)

  • Q1. About introduction and some questions related to job
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
  • Ans. 

    Effective salary negotiation involves research, clear communication, and understanding your value in the job market.

    • Research industry standards: Use websites like Glassdoor or Payscale to find average salaries for your role.

    • Know your worth: Assess your skills, experience, and unique contributions to justify your salary request.

    • Practice your pitch: Prepare a clear and concise explanation of why you deserve the salary yo...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Group Discussion 

What is the company role and what going on this company

Round 3 - Group Discussion 

What is the salary in this company

Round 4 - Coding Test 

What is the coding test I don't know pls give me explain

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company, good feeling in this company, ☺️ and thank u sir.

Tower Research Capital LLC Interview FAQs

How many rounds are there in Tower Research Capital LLC Software Developer interview?
Tower Research Capital LLC interview process usually has 2 rounds. The most common rounds in the Tower Research Capital LLC interview process are Coding Test and One-on-one Round.
How to prepare for Tower Research Capital LLC Software Developer interview?
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 Linux, Python, Research, C++ and Computer science.
What are the top questions asked in Tower Research Capital LLC Software Developer interview?

Some of the top questions asked at the Tower Research Capital LLC Software Developer interview -

  1. Design MakeMyTrip kind of applicati...read more
  2. Oops based questio...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Tower Research Capital LLC Software Developer Salary
based on 35 salaries
₹30 L/yr - ₹45 L/yr
248% more than the average Software Developer Salary in India
View more details

Tower Research Capital LLC Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

3.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
41 salaries
unlock blur

₹39.3 L/yr - ₹67 L/yr

Software Developer
35 salaries
unlock blur

₹30 L/yr - ₹45 L/yr

Site Reliability Engineer
24 salaries
unlock blur

₹18 L/yr - ₹25 L/yr

Senior Software Engineer
22 salaries
unlock blur

₹34 L/yr - ₹56 L/yr

Quantitative Analyst
19 salaries
unlock blur

₹41.2 L/yr - ₹63.8 L/yr

Explore more salaries
Compare Tower Research Capital LLC with

Nomura Holdings

3.7
Compare

Adarsh Credit Co-Operative Society

4.2
Compare

Debtcare Enterprises

4.2
Compare

MNC Group

4.1
Compare
write
Share an Interview