Upload Button Icon Add office photos

Tower Research Capital LLC

Compare button icon Compare button icon Compare

Filter interviews by

Tower Research Capital LLC Strategist Interview Questions and Answers

Updated 30 Aug 2015

9 Interview questions

A Strategist was asked
Q. In a city represented as a 2-D plane there are buildings at different positions. The position of the buildings(x,y co-ordinates) and their heights are given. Write an efficient algorithm to determine the bu...
Ans. 

Algorithm to determine visible buildings in a 2D plane with given positions and heights

  • Sort the buildings by their x-coordinates

  • Traverse the sorted buildings from left to right

  • For each building, check if it is visible by comparing its height with the maximum height of previously visited buildings

  • If visible, add it to the list of visible buildings

  • Return the list of visible buildings

A Strategist was asked
Q. A group of n people is such that a symmetric relation of knowing another exists in the group. i.e. the relation is A knows B. and being symmetric if A knows B then B knows A. Prove that there exist at least...
Ans. 

In a group of people with a symmetric relation of knowing each other, there will always be at least two people who know the same number of people.

  • Consider the person who knows the maximum number of people in the group.

  • If there is no one who knows the same number of people, then everyone else must know a different number of people.

  • But this would mean that the total number of people known by everyone else is differe...

Strategist Interview Questions Asked at Other Companies

Q1. Starting with 1001 stones in a single pile, can you reach a confi ... read more
Q2. A group of n people is such that a symmetric relation of knowing ... read more
Q3. Given a tournament where each team plays a single match between t ... read more
Q4. Consider the set S of the first 2n numbers. Show that for any sub ... read more
Q5. In a city represented as a 2-D plane there are buildings at diffe ... read more
A Strategist was asked
Q. In a 2D plane where every point is assigned a color (blue or red), prove that there exists a rectangle with all corners of the same color.
Ans. 

Prove that there exists a rectangle with all corners of the same color in a 2D plane with blue and red points.

  • Divide the plane into a grid of squares.

  • By the pigeonhole principle, there must be at least one row or column with four points of the same color.

  • Consider the pairs of points in that row or column and check if any of them form a rectangle.

A Strategist was asked
Q. Prove that F_nk is divisible by F_n where F_i is the ith Fibonacci number, with F_0 = 0.
Ans. 

Prove that F_nk is divisible by F_n where F_i is the ith Fibonacci number. with f_0 = 0

  • Use mathematical induction to prove the statement

  • Base case: F_n0 = 0, F_n is also 0, so 0 is divisible by 0

  • Inductive step: Assume F_nk is divisible by F_n, prove F_n(k+1) is divisible by F_n

  • F_n(k+1) = F_nk + F_n(k-1), use the assumption to show that F_nk is divisible by F_n

  • Therefore, F_n(k+1) is also divisible by F_n

  • Hence, the s...

A Strategist was asked
Q. Given a string, find the largest substring which can be formed from repetition (>=2) of the smaller string
Ans. 

Find the largest substring formed from repetition of a smaller string.

  • Identify all possible substrings of the given string.

  • Check if each substring can be formed by repeating a smaller string.

  • Return the largest substring that can be formed from repetition of a smaller string.

A Strategist was asked
Q. Given a unit circle with center at origin, I choose three points on the circle. Find the expected length of the segment containing (1,0).
Ans. 

Expected length of segment containing (1,0) on a unit circle with three random points.

  • Use law of cosines to find length of each segment.

  • Calculate expected value using probability density function.

  • Answer is (4/pi) + (2/3).

Be interview-ready. Browse the most asked HR questions.
illustration image
A Strategist was asked
Q. Given an undirected graph, if dist(u,v)>n/2, show that there exists a vertex x such that removing x makes u and v go to different connected components.
Ans. 

If dist(u,v)>n/2 in an undirected graph, there exists a vertex x such that removing x makes u and v go to different connected components.

  • Find the shortest path between u and v

  • If the path length is greater than n/2, then there must be a vertex x on the path

  • Removing x will separate u and v into different connected components

Are these interview questions helpful?
A Strategist was asked
Q. Consider the set S of the first 2n numbers. Show that for any subset of size n+1 of the set S, there exist two numbers u and v such that u divides v.
Ans. 

For any subset of size n+1 of the set S of the first 2n numbers, there exists 2 numbers u and v such that u divides v.

  • Divide the set S into two subsets of n numbers each.

  • By the pigeonhole principle, at least one of the subsets contains two numbers whose ratio is an integer.

  • If the subset contains n+1 numbers, then one of the numbers must be in the subset with the two numbers whose ratio is an integer.

  • Therefore, the...

A Strategist was asked
Q. Show that for a grid of size n*n, if n is odd then there cannot be a Hamiltonian cycle in the graph
Ans. 

For an odd-sized grid, there cannot be a Hamiltonian cycle in the graph.

  • A Hamiltonian cycle is a path that visits every vertex exactly once and ends at the starting vertex.

  • In an n*n grid, there are n^2 vertices and each vertex has degree 4.

  • For an odd n, the total degree of all vertices is odd, which means there cannot be a Hamiltonian cycle.

Tower Research Capital LLC Strategist Interview Experiences

2 interviews found

Strategist Interview Questions & Answers

user image Anonymous

posted on 5 Feb 2015

Interview Questionnaire 

5 Questions

  • Q1. Given a unit circle with center at origin, I choose three points on the circle. Find the expected length of the segment containing (1.0). Hint: answer is not 2*pi/3
  • Ans. 

    Expected length of segment containing (1,0) on a unit circle with three random points.

    • Use law of cosines to find length of each segment.

    • Calculate expected value using probability density function.

    • Answer is (4/pi) + (2/3).

  • Answered by AI
  • Q2. Given an undirected graph, if dist(u,v)>n/2. Show that there exists a vertex x such that removing x makes u and v go to different connected components.
  • Ans. 

    If dist(u,v)>n/2 in an undirected graph, there exists a vertex x such that removing x makes u and v go to different connected components.

    • Find the shortest path between u and v

    • If the path length is greater than n/2, then there must be a vertex x on the path

    • Removing x will separate u and v into different connected components

  • Answered by AI
  • Q3. Consider the set S of the first 2n numbers, then show that for any subset of size n+1 of the set S, there exists 2 numbers u and v such that u divides v
  • Ans. 

    For any subset of size n+1 of the set S of the first 2n numbers, there exists 2 numbers u and v such that u divides v.

    • Divide the set S into two subsets of n numbers each.

    • By the pigeonhole principle, at least one of the subsets contains two numbers whose ratio is an integer.

    • If the subset contains n+1 numbers, then one of the numbers must be in the subset with the two numbers whose ratio is an integer.

    • Therefore, there ex...

  • Answered by AI
  • Q4. Show that for a grid of size n*n, if n is odd then there cannot be a Hamiltonian cycle in the graph
  • Ans. 

    For an odd-sized grid, there cannot be a Hamiltonian cycle in the graph.

    • A Hamiltonian cycle is a path that visits every vertex exactly once and ends at the starting vertex.

    • In an n*n grid, there are n^2 vertices and each vertex has degree 4.

    • For an odd n, the total degree of all vertices is odd, which means there cannot be a Hamiltonian cycle.

  • Answered by AI
  • Q5. I start with 1001 stones. I put them in a pile. Then I can do the following: Step 1- choose a pile, step 2- remove 1 stone from the pile, step 3- divide it into two nonzero piles. Can we reach a configurat...

Interview Preparation Tips

Round: Test
Experience: It was for 100 marks and was based on OOPS, programming,maths and probablity
Total Questions: 10

Round: Interview
Experience: Had two rounds, 1 hour each.

General Tips: Do not take the placements lightly.
Do read OS and DBMS, as you can miss your dream company just
because objective questions on these topics went wrong. In my case the company was Google.Make sure you have at least 1 wing mate with you during the entire process.Carry a lot of fluids and some snacks as the day will be demanding.Do not sit for more than 3 companies on the same day.Do not panic. Enjoy the day and in the end you will be rewarded.Give your best, speak with confidence.
College Name: IIT KANPUR
Motivation: I had two offers at the end of slot 1, day 1- one from Tower research and the other from Oracle US. Tower had a much better reputation and had a stronger growth curve. base pay was higher.

Skills evaluated in this interview

Strategist Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2015

Interview Questionnaire 

6 Questions

  • Q1. In a city represented as a 2-D plane there are buildings at different positions. The position of the buildings(x,y co-ordinates) and their heights are given. Write an efficient algorithm to determine the b...
  • Ans. 

    Algorithm to determine visible buildings in a 2D plane with given positions and heights

    • Sort the buildings by their x-coordinates

    • Traverse the sorted buildings from left to right

    • For each building, check if it is visible by comparing its height with the maximum height of previously visited buildings

    • If visible, add it to the list of visible buildings

    • Return the list of visible buildings

  • Answered by AI
  • Q2. A group of n people is such that a symmetric relation of knowing another exists in the group. i.e. the relation is A knows B. and being symmetric if A knows B then B knows A. Prove that there exist atleast...
  • Ans. 

    In a group of people with a symmetric relation of knowing each other, there will always be at least two people who know the same number of people.

    • Consider the person who knows the maximum number of people in the group.

    • If there is no one who knows the same number of people, then everyone else must know a different number of people.

    • But this would mean that the total number of people known by everyone else is different fr...

  • Answered by AI
  • Q3. In a 2 D plane, every point is assigned a color either blue or red. Prove that there exists a rectangle with all corners of the same color
  • Ans. 

    Prove that there exists a rectangle with all corners of the same color in a 2D plane with blue and red points.

    • Divide the plane into a grid of squares.

    • By the pigeonhole principle, there must be at least one row or column with four points of the same color.

    • Consider the pairs of points in that row or column and check if any of them form a rectangle.

  • Answered by AI
  • Q4. Prove that F_nk is divisible by F_n where F_i is the ith Fibonacci number. with f_0 = 0
  • Ans. 

    Prove that F_nk is divisible by F_n where F_i is the ith Fibonacci number. with f_0 = 0

    • Use mathematical induction to prove the statement

    • Base case: F_n0 = 0, F_n is also 0, so 0 is divisible by 0

    • Inductive step: Assume F_nk is divisible by F_n, prove F_n(k+1) is divisible by F_n

    • F_n(k+1) = F_nk + F_n(k-1), use the assumption to show that F_nk is divisible by F_n

    • Therefore, F_n(k+1) is also divisible by F_n

    • Hence, the statem...

  • Answered by AI
  • Q5. A tournament has to be conducted. The tournament has each team playing a single match and match is played by 2 teams. Every team has two ratings. X : batting rating and Y: bowling rating. Every match has a...
  • Ans. 

    Maximize tournament rating by optimizing team matchups based on batting and bowling ratings.

    • Calculate match rating for each pair of teams using (X1+X2)/(Y1+Y2).

    • To maximize the tournament rating, minimize the denominator (Y1+Y2).

    • Example: Teams A (X=10, Y=5) and B (X=8, Y=3) yield a match rating of (10+8)/(5+3) = 18/8 = 2.25.

    • Consider all possible pairings and select the one with the highest minimum match rating.

    • Use sorti...

  • Answered by AI
  • Q6. Given a string, find the largest substring which can be formed from repetition (>=2) of the smaller string
  • Ans. 

    Find the largest substring formed from repetition of a smaller string.

    • Identify all possible substrings of the given string.

    • Check if each substring can be formed by repeating a smaller string.

    • Return the largest substring that can be formed from repetition of a smaller string.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Unfortunately, I reached pretty late to this test and got only around half an hour to solve the questions. I picked up only algorithm questions to solve. I did not go through the entire paper. So can't comment much.
Duration: 120 minutes

Round: Technical Interview
Experience: They asked me to write the entire code in C/C++/language of choice. I had three interviews (two of 40 min and the final of about 100 minutes). That is all I remember . There were many other questions though.

Skills: Data Structures, Algorithms Intermediate, Discrete Mathematics, Probability and Statistics
College Name: IIT KANPUR

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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 3 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 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. How many work experience
Round 3 - HR 

(1 Question)

  • Q1. What is expectation for salary
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2021. 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 - HR 

(1 Question)

  • Q1. Background and present CTC drawn
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions related to your field.

Interview Preparation Tips

Interview preparation tips for other job seekers - One direct interview with your reporting senior. Usually questions are on your experience and requirements in the job.

I applied via Referral and was interviewed in May 2022. There were 2 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 - Technical 

(4 Questions)

  • Q1. Tell us Something about yourself
  • Q2. What is your Experience in Plant and Machinery Valuations
  • Ans. 

    I have extensive experience in conducting plant and machinery valuations for various industries.

    • I have conducted valuations for manufacturing plants, construction sites, and mining operations.

    • I am familiar with various valuation methods such as cost approach, market approach, and income approach.

    • I have worked with appraisers and engineers to ensure accurate valuations.

    • I have also provided recommendations for equipment ...

  • Answered by AI
  • Q3. What is your expected remuneration per month
  • Ans. 1 Lakh per month take home
  • Answered Anonymously
  • Q4. When can you join our company
  • Ans. On 14th November Monday 2022
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Resurgent India Senior Manager interview:
  • Registered Valuer Certification
Interview preparation tips for other job seekers - Always Clarify Position in Writing after Interview,

Offer Letter is different from Appointment Letter,

Start working only after receiving Appointment Letter with Job Profile and Remuneration Clarification
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Aug 2024, where I was asked the following questions.

  • Q1. Tell me about your Self
  • Ans. 

    Dynamic sales professional with a passion for building relationships and driving revenue growth through strategic solutions.

    • Background: I have a degree in Business Administration, which provided me with a solid foundation in sales and marketing principles.

    • Experience: I have over 3 years of experience in sales, where I consistently exceeded my targets by 20% through effective client engagement.

    • Skills: Strong communicati...

  • Answered by AI
  • Q2. What's Your Qualification
  • Ans. 

    I hold a Bachelor's degree in Business Administration, specializing in Marketing, along with relevant sales certifications.

    • Bachelor's degree in Business Administration with a focus on Marketing.

    • Completed a Sales Management certification to enhance my skills.

    • Interned at XYZ Corp, where I successfully increased sales by 20% during my tenure.

    • Participated in workshops on negotiation and customer relationship management.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Join the company at your own decision
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 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 😉
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.

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

Tower Research Capital LLC Interview FAQs

How to prepare for Tower Research Capital LLC Strategist 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 Analytical, Computer science, Data Analysis, Financial Markets and Linux.
What are the top questions asked in Tower Research Capital LLC Strategist interview?

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

  1. I start with 1001 stones. I put them in a pile. Then I can do the following: St...read more
  2. A group of n people is such that a symmetric relation of knowing another exists...read more
  3. A tournament has to be conducted. The tournament has each team playing a single...read more

Tell us how to improve this page.

Tower Research Capital LLC Strategist Salary
based on 6 salaries
₹36.9 L/yr - ₹50 L/yr
128% more than the average Strategist Salary in India
View more details
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