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

Thomson Reuters Web Developer Trainee Interview Questions and Answers

Updated 24 Oct 2024

Thomson Reuters Web Developer Trainee Interview Experiences

1 interview found

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 Oct 2023. There were 3 interview rounds.

Round 1 - Assignment 

It was about designing a website

Round 2 - Technical 

(2 Questions)

  • Q1. How to center a dib
  • Ans. 

    To center a div, use CSS properties like display, margin, and text-align.

    • Use 'display: flex;' and 'justify-content: center;' for horizontal centering

    • Use 'margin: 0 auto;' for horizontal centering with block elements

    • Use 'text-align: center;' for inline elements like text or images

  • Answered by AI
  • Q2. String concatenation in JavaScript.
  • Ans. 

    String concatenation in JavaScript is the process of combining two or more strings into a single string.

    • Use the '+' operator to concatenate strings.

    • Use the concat() method to concatenate strings.

    • Template literals can also be used for string concatenation.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Any question from your side.

Interview Preparation Tips

Interview preparation tips for other job seekers - it's been too long since I took this interview, so no tips for fresh job seekers

Skills evaluated in this interview

Interview questions from similar companies

I appeared for an interview in Jul 2019.

Interview Questionnaire 

4 Questions

  • Q1. 1. Java questions basee on interfaces, Exception Handling, inheritance, Steam API;
  • Q2. 2. SQL questions related to joins, sub-queries, nth highest salary;
  • Q3.  3. Basic algorithms questions based on Arrays/Linked List.
  • Q4. 4. Puzzles based on basic aptitudes test.

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for Java Developer. I had 4 rounds (all technical rounds). Each rounds comprises questions related to Java/Puzzles/Algorithms and my experience of project.

Go through your resume. Things should be relevant and one should have clear understanding of basics.

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is rotational shifts. What is web service flow. How will you check ports on Unix or Solaris machine.
  • Ans. 

    Rotational shifts refer to working in different shifts at different times. Web service flow is the sequence of steps involved in a web service request. Checking ports on Unix or Solaris machine involves using the netstat command.

    • Rotational shifts involve working in different shifts at different times, such as day shift, night shift, and swing shift.

    • Web service flow involves a sequence of steps, such as sending a reques...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. Have heard of negative reviews from a number of people, but didn't believed. Unfortunately had to share same pain with them. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

Interview Questionnaire 

9 Questions

  • Q1. System design of traffic signal
  • Ans. 

    Design a traffic signal system

    • Identify the number of lanes and intersections

    • Determine the traffic flow and peak hours

    • Choose appropriate sensors and controllers

    • Implement a synchronization algorithm

    • Consider emergency vehicle prioritization

    • Include pedestrian crossing signals

    • Ensure compliance with local regulations

  • Answered by AI
  • Q2. Data structures
  • Q3. Oops spring jdbc
  • Q4. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when multiple keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q5. Pattern printing code
  • Ans. 

    Printing patterns using code

    • Identify the pattern to be printed

    • Use loops to print the pattern

    • Adjust the loop variables to control the pattern

    • Use conditional statements to modify the pattern

    • Examples: printing stars, triangles, squares, etc.

  • Answered by AI
  • Q6. Common point in linked list
  • Ans. 

    Common point in linked list refers to the node where two or more linked lists intersect.

    • The common point can be found by traversing both linked lists and comparing the nodes.

    • The common point can also be found by using two pointers, one for each linked list, and moving them until they meet at the common point.

    • Examples include finding the intersection point of two linked lists or finding the loop in a linked list.

  • Answered by AI
  • Q7. Optimization
  • Q8. Synchronisation
  • Q9. Threads

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For java based profile, questions related to collections, usage of comparator, Class loading are asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics of computer science like data structure and algorithms. Have a detailed understanding of java basics

Interview Questionnaire 

1 Question

  • Q1. Oops, core Java related questions, spring boot

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120minutes
Round difficulty - Easy

It was an online MCQ's + coding round consisting of 20 MCQ’s and 1 coding problem.

  • Q1. Check whether there exists a loop in the linked list.
  • Ans. 

    Check for a loop in a linked list by using two pointers moving at different speeds.

    • Use two pointers, one moving at double the speed of the other.

    • If there is a loop, the two pointers will eventually meet at the same node.

    • Example: 1 -> 2 -> 3 -> 4 -> 5 -> 2 (loop back to 2), the two pointers will meet at node 2.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

The interview started at 8:30 pm in cc of Delhi Technological University itself and it was quite late. There was only a single interviewer and he asked me one coding question related to overflow of integers.

  • Q1. How can you check for integer overflow when multiplying two integers and ensure the result is stored correctly within an integer type?
  • Ans. 

    To check for integer overflow when multiplying two integers, use the properties of integer overflow and check if the result is within the valid range of the integer type.

    • Check if the signs of the two integers are the same to avoid overflow in case of multiplication.

    • Use the properties of integer overflow to detect if the result exceeds the maximum or minimum value of the integer type.

    • Consider using a larger data type or...

  • Answered by AI
Round 3 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was quite late . There was only one interviewer and I was asked about my family , education and future plannings and few questions related joining locations and documents etc.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Delhi Technological University. I applied for the job as SDE - 1 in PuneEligibility criteria6Amdocs interview preparation:Topics to prepare for the interview - I did a lot of practice of data structures and algorithms. I covered main topics such as arrays, strings, trees, linked lists, hashmaps, and recursion. Algorithms such as sorting, searching, BFS, DFS, and greedy were also covered by me.Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Focus on data structures and algorithms part more. Tell the interviewer , starting from the brute force approach to the most optimal solution as this will give a good impression to the interviewer.

Application resume tips for other job seekers

To be honest, the problem-solving ability is the only thing that most companies care about. So you can manipulate your resume according to that. Mention your competitive programming handles in your resume and also other coding ranks or achievements which you have achieved.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have got questions about vsam files and about SQL queries.
  • Q2. What is my previous work and project roles and responsibilities.?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics clear with your project,your work,and your roles and responsibilities and be good to make them understand what you willing to answer.

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. All the questions were technical and most of them were based on my previous experience and manager round was very different i.e asked some logical questions
  • Q2. You have been given 9 balsa of same shape and size by using weighing scale you need to determine the heavy weight ball by weighing 3 times.
  • Ans. 

    Weigh 3 groups of 3 balls each, then weigh 2 heaviest balls from the heaviest group to find the heaviest ball.

    • Divide the 9 balls into 3 groups of 3 balls each.

    • Weigh the first 2 groups against each other.

    • If one group is heavier, weigh 2 balls from that group against each other to find the heaviest ball.

    • If both groups weigh the same, weigh the third group to find the heaviest group.

    • Weigh 2 heaviest balls from the heavies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself confidently answer the questions

Interview Questionnaire 

1 Question

  • Q1. Some basic coding questions which can be solved using any programming language. I solved them using Java. Some basic UNIX questions and some basic SQL questions

Thomson Reuters Interview FAQs

How many rounds are there in Thomson Reuters Web Developer Trainee interview?
Thomson Reuters interview process usually has 3 rounds. The most common rounds in the Thomson Reuters interview process are Assignment, Technical and HR.
How to prepare for Thomson Reuters Web Developer Trainee 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 CSS, CSS3, HTML, Html5 and Illustrator.
What are the top questions asked in Thomson Reuters Web Developer Trainee interview?

Some of the top questions asked at the Thomson Reuters Web Developer Trainee interview -

  1. string concatenation in JavaScri...read more
  2. how to center a ...read more

Tell us how to improve this page.

Thomson Reuters Web Developer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join Thomson Reuters Clarifying the complex so professionals can act with confidence

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 864 Interviews
Amdocs Interview Questions
3.7
 • 517 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Chetu Interview Questions
3.3
 • 175 Interviews
AVASOFT Interview Questions
2.9
 • 165 Interviews
Dassault Systemes Interview Questions
4.0
 • 164 Interviews
Freshworks Interview Questions
3.5
 • 164 Interviews
View all
Thomson Reuters Web Developer Trainee Salary
based on 39 salaries
₹3.5 L/yr - ₹4.5 L/yr
11% more than the average Web Developer Trainee Salary in India
View more details

Thomson Reuters Web Developer Trainee Reviews and Ratings

based on 5 reviews

2.7/5

Rating in categories

2.5

Skill development

2.6

Work-life balance

2.1

Salary

1.7

Job security

2.8

Company culture

2.0

Promotions

2.6

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
516 salaries
unlock blur

₹4.9 L/yr - ₹17.2 L/yr

Senior Software Engineer
496 salaries
unlock blur

₹8.5 L/yr - ₹33 L/yr

Content Specialist
210 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Content Analyst
173 salaries
unlock blur

₹2.7 L/yr - ₹7 L/yr

Devops Engineer
144 salaries
unlock blur

₹4.8 L/yr - ₹18.9 L/yr

Explore more salaries
Compare Thomson Reuters with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

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