Upload Button Icon Add office photos
Premium Employer

i

This company page is being actively managed by Thomson Reuters Team. If you also belong to the team, you can get access from here

Thomson Reuters Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Thomson Reuters Finance Manager Interview Questions and Answers

Updated 4 Apr 2024

Thomson Reuters Finance Manager Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Assignment 

A case study was given to solve and questions were asked

Finance Manager Jobs at Thomson Reuters

View all

Interview questions from similar companies

Interview experience
5
Excellent
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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you do in your previous org?
  • Q2. How did you help with hiring?

Interview Preparation Tips

Interview preparation tips for other job seekers - Do research on payroll fundamentals
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 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 Resume tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. Why you want to join ADP
  • Q2. How you manage conflicts at work
  • Q3. Situation based questions
  • Q4. Where do you see after 5 year

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be prepared before go for the interview. Communication is important
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself , work experience etc
  • Ans. 

    Experienced professional with a background in retail management and a proven track record of driving sales and leading teams.

    • Worked as a retail manager for 5+ years, overseeing daily operations and staff management

    • Successfully implemented sales strategies that resulted in a 20% increase in revenue

    • Led a team of 15 employees, providing training and support to ensure high performance

    • Strong communication and problem-solvin

  • Answered by AI
  • Q2. How many years of leadership experience on paper
  • Ans. 

    I have 5 years of leadership experience on paper.

    • I have held leadership positions in previous jobs where I was responsible for managing teams and making strategic decisions.

    • I have completed leadership training programs and workshops to enhance my skills in leading and motivating others.

    • I have received positive feedback from supervisors and colleagues regarding my leadership abilities.

    • I have successfully led projects fr...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What are Unicorns?
  • Ans. 

    Unicorns are mythical creatures often depicted as horse-like animals with a single horn on their forehead.

    • Unicorns are often associated with purity, grace, and magic.

    • They are commonly depicted in folklore, fairy tales, and fantasy literature.

    • In popular culture, unicorns are often portrayed as white horses with a colorful horn.

    • Some cultures believe that unicorn horns have healing properties.

    • The unicorn is the national a

  • Answered by AI
  • Q2. What is M&A? What are rounds of funding?
  • Ans. 

    M&A stands for mergers and acquisitions. Rounds of funding refer to the stages of investment a company goes through.

    • M&A involves the consolidation of companies through various financial transactions such as mergers, acquisitions, or takeovers.

    • Rounds of funding are the different stages of investment a company goes through to raise capital, typically starting with seed funding, followed by Series A, B, C, etc.

    • Each round ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through JD and prepare accordingly. Do not try to fake/ cheat. Be natural.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Introduction personal
  • Q2. Reason for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a larger organization.

    • Desire for career advancement

    • Opportunity to work with a larger team and more complex financial operations

    • Seeking new challenges and learning opportunities

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Process discussion
  • Q2. Scenario based questions

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

Interview Preparation Tips

General Tips: I asked my seniors about the interview process. Their guidelines were very helpful. Always try to bring the interviewer into your comfort zone. Also be confident and expressive while explaining. Explain your thought process while solving. Even though you don't get the solution the thought process might be very important for your selection.
College Name: NIT SURATHKAL

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal
Contribute & help others!
anonymous
You can choose to be anonymous

Thomson Reuters Interview FAQs

How many rounds are there in Thomson Reuters Finance Manager interview?
Thomson Reuters interview process usually has 1 rounds. The most common rounds in the Thomson Reuters interview process are Assignment.
How to prepare for Thomson Reuters Finance Manager 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 Thomson Reuters. The most common topics and skills that interviewers at Thomson Reuters expect are Taxation, SAP, Analytics, Automation Tools and Excel.

Recently Viewed

INTERVIEWS

People Tech Group

No Interviews

INTERVIEWS

People Tech Group

40 top interview questions

SALARIES

Gravita

INTERVIEWS

Gravita

No Interviews

INTERVIEWS

Dell

No Interviews

INTERVIEWS

People Tech Group

No Interviews

SALARIES

People Tech Group

INTERVIEWS

MKS Vision

No Interviews

INTERVIEWS

Gravita

No Interviews

CAMPUS PLACEMENT

Birla College, Mumbai

Tell us how to improve this page.

Thomson Reuters Finance Manager Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 846 Interviews
Amdocs Interview Questions
3.7
 • 512 Interviews
S&P Global Interview Questions
4.1
 • 275 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
Adobe Interview Questions
3.9
 • 233 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
FactSet Interview Questions
3.9
 • 204 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
View all
Thomson Reuters Finance Manager Salary
based on 30 salaries
₹23.6 L/yr - ₹40 L/yr
82% more than the average Finance Manager Salary in India
View more details

Thomson Reuters Finance Manager Reviews and Ratings

based on 4 reviews

4.5/5

Rating in categories

4.3

Skill development

4.7

Work-life balance

4.8

Salary

3.6

Job security

4.5

Company culture

3.9

Promotions

4.3

Work satisfaction

Explore 4 Reviews and Ratings
Manager Finance - FP&A

Hyderabad / Secunderabad

10-15 Yrs

₹ 30-37.26 LPA

Explore more jobs
Software Engineer
509 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
459 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Specialist
202 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Analyst
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
144 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Thomson Reuters with

Bloomberg

3.4
Compare

S&P Global

4.1
Compare

FactSet

3.9
Compare

Morningstar

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