AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
messages 0
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Tower Research Capital LLC

Compare button icon Compare button icon Compare
3.8

based on 20 Reviews

Play video Play video Video summary
  • About
  • Reviews
    20
  • Salaries
    524
  • Interviews
    21
  • Jobs
    19
  • Benefits
    3
  • Photos
    -

Filter interviews by

Tower Research Capital LLC Software Engineer Interview Questions and Answers

Updated 28 May 2022

6 Interview questions

A Software Engineer was asked
Q. Given k and a DFS traversal string for a k-ary tree, construct the tree. The string contains 'P' (if a parent) and 'L' (if a leaf). For example, k=3, str="PPLLLLL". All the strings are arranged in the follo...
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

A Software Engineer was asked
Q. How would you determine if a graph contains a node with degree n?
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

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
View answers (293)
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (530)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
A Software Engineer was asked
Q. Can you describe the classes and functions involved in the design of a system like Splitwise?
Ans. 

Splitwise is a system for managing shared expenses among groups of people.

  • Classes: User, Expense, Group

  • Functions: addExpense(), settleUp(), calculateBalance()

A Software Engineer was asked
Q. What is the difference between multiprocessing and multithreading?
Ans. 

Multiprocessing involves multiple processes running concurrently, while multithreading involves multiple threads within a single process.

  • Multiprocessing utilizes multiple processes to execute tasks simultaneously.

  • Multithreading involves multiple threads within a single process sharing the same memory space.

  • Multiprocessing is typically used for CPU-bound tasks, while multithreading is more suitable for I/O-bound ta...

A Software Engineer was asked
Q. 

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

Ans. 

Find the maximum profit by buying and selling a stock once based on given prices.

  • Iterate through the prices array and keep track of the minimum price seen so far and the maximum profit achievable.

  • Calculate the profit by subtracting the current price from the minimum price and update the maximum profit if needed.

  • Return the maximum profit, ensuring it is not negative.

  • Example: prices = [2, 100, 150, 120], Buy at 2, s...

What are the roles & responsibilities of a Software Engineer at Tower Research Capital LLC?

Data Pipeline Development

  • Develop data pipelines for collecting and processing datasets
  • Build pipelines for monitoring and managing ML/DL models
  • Optimize and fine-tune existing machine learning models
  • Conduct experiments to evaluate model performance

Model Design and Implementation

  • Design deep learning architectures for large data volumes
  • Deploy large scale deep learning models
  • Contribute to improving production ML/DL models

Read full roles & responsibilities

A Software Engineer was asked
Q. 

Dance Team Pairing Challenge

Imagine you are helping Ninja, a dance coach, who needs to form dance pairs from the available boys and girls in a studio. Given the number of boys N, the number of girls M, an...

Ans. 

The challenge involves forming dance pairs from available boys and girls based on potential pairings to maximize the number of pairs.

  • Parse the input to get the number of test cases, boys, girls, and potential pairings.

  • Iterate through the potential pairings and form pairs based on the given indexes.

  • Output '1' if a set of maximum possible pairs is returned, else output '0'.

  • There can be multiple valid configurations ...

Be interview-ready. Browse the most asked HR questions.
View all HR interview questions
illustration image

Tower Research Capital LLC Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 28 May 2022

I appeared for an interview in May 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

The interviewer was friendly. Explained the question well. Allowed to use any preferred platform to write code.

  • 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 ac...

  • Ans. 

    Find the maximum profit by buying and selling a stock once based on given prices.

    • Iterate through the prices array and keep track of the minimum price seen so far and the maximum profit achievable.

    • Calculate the profit by subtracting the current price from the minimum price and update the maximum profit if needed.

    • Return the maximum profit, ensuring it is not negative.

    • Example: prices = [2, 100, 150, 120], Buy at 2, sell a...

  • Answered by AI
    View 1 more answer
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Dance Team Pairing Challenge

    Imagine you are helping Ninja, a dance coach, who needs to form dance pairs from the available boys and girls in a studio. Given the number of boys N, the number of girls M, a...

  • Ans. 

    The challenge involves forming dance pairs from available boys and girls based on potential pairings to maximize the number of pairs.

    • Parse the input to get the number of test cases, boys, girls, and potential pairings.

    • Iterate through the potential pairings and form pairs based on the given indexes.

    • Output '1' if a set of maximum possible pairs is returned, else output '0'.

    • There can be multiple valid configurations of pa...

  • Answered by AI
    Add your answer
  • Q2. What is the difference between multiprocessing and multithreading?
  • Ans. 

    Multiprocessing involves multiple processes running concurrently, while multithreading involves multiple threads within a single process.

    • Multiprocessing utilizes multiple processes to execute tasks simultaneously.

    • Multithreading involves multiple threads within a single process sharing the same memory space.

    • Multiprocessing is typically used for CPU-bound tasks, while multithreading is more suitable for I/O-bound tasks.

    • E...

  • Answered by AI
    Add your answer
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Can you describe the classes and functions involved in the design of a system like Splitwise?
  • Ans. 

    Splitwise is a system for managing shared expenses among groups of people.

    • Classes: User, Expense, Group

    • Functions: addExpense(), settleUp(), calculateBalance()

  • Answered by AI
    Add your answer
Round 4 - Video Call 

Round duration - 60 Minutes
Round difficulty - Hard

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNo criteriaTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Low level design, High Level Design, Relational Database Management Systems, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5 questions of each topic of various difficulty levels
Tip 2 : Read out theory articles about your preferred language showing your proficiency in the same.
Tip 3 : Hard work is overrated, consistency is the key.

Application resume tips for other job seekers

Tip 1 : Own everything you have there, do not add random skills that you are not proficient in.
Tip 2 : Keep it clean and try to give out minimal but most of the relevant information for the role.

Final outcome of the interviewSelected

Skills evaluated in this interview

Anonymous
Are these interview questions helpful?

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2017

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
    View 1 more answer
  • 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
    Add your answer

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

Anonymous

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

company Logo

Software Engineer Interview Questions & Answers

Nomura Holdings user image SMITA LAD

posted on 5 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of garbage collectors
  • Add your answer
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
    Add your answer
Anonymous
company Logo

Software Engineer Interview Questions & Answers

MNC Group user image Anonymous

posted on 20 Feb 2023

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.
Anonymous
company Logo

Software Engineer Interview Questions & Answers

MNC Group user image Anonymous

posted on 25 Oct 2022

I applied via Campus Placement and was interviewed in Sep 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 

Logic base questions minimum 30

Round 3 - Coding Test 

Two coding questions in one hr

Interview Preparation Tips

Topics to prepare for MNC Group Software Engineer interview:
  • Python
Interview preparation tips for other job seekers - Hr round can give job conform.it should for mnc companies 😉
Anonymous
company Logo

Software Engineer Interview Questions & Answers

MNC Group user image Anonymous

posted on 14 Dec 2021

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

Interview Questionnaire 

1 Question

  • Q1. Electronic communication engineering
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Written test
Anonymous
company Logo

Software Engineer Interview Questions & Answers

MNC Group user image Anonymous

posted on 8 Apr 2022

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
Anonymous
company Logo

Software Engineer Interview Questions & Answers

MNC Group user image Anonymous

posted on 23 Apr 2023

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
  • Add your answer
Round 4 - HR 

(1 Question)

  • Q1. About introduction and some questions related to job
  • Add your answer
Anonymous
company Logo

Software Developer Interview Questions & Answers

Nomura Holdings user image Anonymous

posted on 24 Apr 2024

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
  • Add your answer
Anonymous
company Logo

Senior Software Engineer Interview Questions & Answers

Nomura Holdings user image Anonymous

posted on 9 Sep 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Not super hard for the test code

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for the normal data structure test is fine
Anonymous
More about working at Tower Research Capital LLC
  • HQ - NEW YORK, New York, United States (USA)
  • Investment Banking / Venture Capital / Private Equity
  • 201-500 Employees (India)

Tower Research Capital LLC Interview FAQs

How to prepare for Tower Research Capital LLC Software Engineer 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, Monitoring, Python, Research and Bash Scripting.
What are the top questions asked in Tower Research Capital LLC Software Engineer interview?

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

  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

Tell us how to improve this page.

Tower Research Capital LLC Interviews By Designations

  • Tower Research Capital LLC Software Developer Interview Questions
  • Tower Research Capital LLC SDE-2 Interview Questions
  • Tower Research Capital LLC Core Engineering Interview Questions
  • Tower Research Capital LLC Software Engineer Interview Questions
  • Tower Research Capital LLC Strategist Interview Questions
  • Tower Research Capital LLC Senior Software Engineer Interview Questions
  • Tower Research Capital LLC Senior Information Technology Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • System Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Project Engineer Interview Questions
  • Lead Engineer Interview Questions
  • Software Development Engineer Interview Questions
  • Show more
  • Lead Software Engineer Interview Questions
  • Senior Developer Interview Questions

Interview Questions from Similar Companies

MNC Group
MNC Group Software Engineer Interview Questions
4.1
 • 120 Interviews
Nomura Holdings
Nomura Holdings Software Engineer Interview Questions
3.8
 • 73 Interviews
Verity Knowledge Solutions
Verity Knowledge Solutions Software Engineer Interview Questions
3.2
 • 35 Interviews
Swastika Investmart
Swastika Investmart Software Engineer Interview Questions
4.0
 • 12 Interviews
Debtcare Enterprises
Debtcare Enterprises Software Engineer Interview Questions
4.2
 • 11 Interviews
VERITY GLOBAL SOLUTIONS
VERITY GLOBAL SOLUTIONS Software Engineer Interview Questions
3.4
 • 11 Interviews
Belstar Investment and Finance
Belstar Investment and Finance Software Engineer Interview Questions
4.1
 • 7 Interviews
Cholamandalam Securities
Cholamandalam Securities Software Engineer Interview Questions
3.4
 • 7 Interviews
Adarsh Credit Co-Operative Society
Adarsh Credit Co-Operative Society Software Engineer Interview Questions
4.2
 • 3 Interviews
Resurgent India
Resurgent India Software Engineer Interview Questions
4.3
 • 3 Interviews
View all
Tower Research Capital LLC Software Engineer Salary
based on 41 salaries
₹39.3 L/yr - ₹67 L/yr
482% more than the average Software Engineer Salary in India
View more details
Software Engineer Jobs at Tower Research Capital LLC
Tower Research Capital LLC
Software Engineer

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

Explore more jobs
Tower Research Capital LLC Salaries in India
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

Nomura Holdings

3.8
Compare
Adarsh Credit Co-Operative Society

Adarsh Credit Co-Operative Society

4.2
Compare
Debtcare Enterprises

Debtcare Enterprises

4.2
Compare
MNC Group

MNC Group

4.1
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Tower Research Capital LLC Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter